.btn-big-action {
    font-size: 16px; /* Tăng kích thước font */
    padding: 10px 22px; /* Tăng padding để nút lớn hơn */
    border-radius: 2px; /* Làm tròn góc */
    /*border: 2px solid #007bff; !* Định nghĩa độ dày và màu sắc của viền *!*/
    transition: all 0.3s ease; /* Hiệu ứng chuyển đổi mượt mà khi hover hoặc focus */
}
.btn-big-action:hover, .btn-action:focus {
    /*background-color: #0056b3; !* Thay đổi màu nền khi hover hoặc focus *!*/
    /*color: #ffffff; !* Thay đổi màu chữ khi hover hoặc focus *!*/
    /*border-color: #0056b3; !* Thay đổi màu viền khi hover hoặc focus *!*/
}

.btn-big-success {
    font-size: 16px; /* Tăng kích thước font */
    padding: 10px 22px; /* Tăng padding để nút lớn hơn */
    border-radius: 10px; /* Làm tròn góc */
}

.text-collapse {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Số dòng bạn muốn hiển thị trước khi rút gọn */
    -webkit-box-orient: vertical;
    cursor: pointer; /* Cho biết có thể click */
}

.text-expand {
    display: block;
}

.detail-view-wrap {
    word-wrap: break-word; /* Legacy support */
    word-break: break-word; /* Ensures words break properly */
    white-space: normal; /* Ensures text respects the container size */
}

.custom-button {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 5px;
}

.custom-button:hover {
    background-color: #5a6268;
    color: white;
}

.custom-button .icon {
    margin-left: 10px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.custom-button .icon:before {
    content: '\2714'; /* Unicode for checkmark symbol */
    font-size: 16px;
    color: white;
}

.text-to-speech-form .submit-button {
    display: flex;
    justify-content: flex-end;
}

.add-item-date, .delete-item-date {
    visibility: hidden;
}


#create-broadcast-schedule-form .submitBtn {
    margin-bottom: 0px;
}

#create-broadcast-schedule-form .submitBtn button {
    border-radius: 20px;
    opacity: 0.8;
    float: right;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 600;
}

.fields-area {
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 10px;
}

.delete-device-button {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #d73925;
    text-align: center;
    line-height: 35px;
    text-decoration: none;
    color: white;
}

.delete-device-button .glyphicon-trash {
    color: white;
}

.delete-device-button .glyphicon-trash:hover {
    color: white;
}


/* Responsive adjustments for max-width 767px */
@media (max-width: 767px) {
    .main-header .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-header .navbar-custom-menu {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        display: flex;
    }

    .main-header .navbar-custom-menu ul {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        display: flex;
    }

    .navbar-custom-menu .navbar-nav>li>a {
        font-size: 18px;
    }

    .skin-blue-light .main-header .logo {
        pointer-events: auto !important;
    }

    .skin-blue-light .main-header .logo:hover{
        background: none;
    }
}


/* Responsive adjustments for max-width 767px */
@media (min-width: 767px) and (max-width: 1024px) {
    .main-header .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-header .navbar-custom-menu {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        display: flex;
    }

    .main-header .navbar-custom-menu ul {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        display: flex;
    }

    .navbar-custom-menu .navbar-nav>li>a {
        font-size: 18px;
    }

    .skin-blue-light .main-header .logo {
        pointer-events: auto !important;
    }

    .skin-blue-light .main-header .logo:hover{
        background: none;
    }

    .main-header .navbar-static-top {
        text-align: center !important;
    }
}