.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0px;
    margin-left: 0px;
    display: inline;
    border: 0px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: 0px;
}

tbody tr td img {
    width: 45px !important;
    height: 50px !important;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #858796;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 5px;
}
/* .selected-item input {
    width: 70px;
} */
.selected-item button {
    aspect-ratio: 1;
    margin-left: 8px;
    padding: 0 8px;
    background: #fff;
    color: #858796;
    border: none;
    border-radius: 200px;
    box-sizing: border-box;
    height: fit-content;
}

.selected-item button:hover {
    background: #999;
    color: #656776;
}


.delete-img {
    position: absolute;
    height: 25px;
    width: 25px;
    background: red;
    color: #fff;
    border-radius: 50% 50%;
    text-align: center;
    right: 20px;
    top: 10px;
    cursor: pointer;
    vertical-align: middle;
    opacity: .7;
}

.bg-gradient-primary {
    /* background: rgb(229,139,190) !important;
    background: radial-gradient(circle, rgba(229,139,190,1) 0%, rgba(235,95,174,1) 35%, rgba(196,7,114,1) 100%) !important; */
    background: rgb(11, 48, 207);
    background: linear-gradient(90deg, rgba(11, 48, 207, 1) 0%, rgba(53, 7, 146, 1) 100%, rgba(0, 212, 255, 1) 100%);
    /* background:radial-gradient(circle, rgba(224,104,77,1) 0%, rgba(139,23,128,1) 35%, rgba(24,5,21,1) 100%) !important; */
}

/* request loader css start */
.request-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000007a;
    z-index: 10000;
    display: none;
}

.request-loader img {
    position: fixed;
    display: none;
    width: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.request-loader.show {
    display: block;
}

.request-loader.show img {
    display: block;
}
.activity-div {
    background: #eee;
    padding: 1rem;
    border-radius: .4rem;
    margin: 1rem 0;
}

.day-container {
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding-bottom: .5rem;
    padding-top: 1rem;
} 

/* request loader css end */

@media (min-width: 768px) {
    .sidebar .nav-item .nav-link span {
        font-size: 1rem;
        color: #fff;
    }
}

/* Raz */
@media only screen and (max-width: 767px) {
    .d-upto-md-none {
        display: none !important;
    }

    #uploaded_image_adv img,
    video {
        width: 100% !important;
        height: 230px !important;
    }
}

table.dataTable thead th {
    border-bottom: none !important;
    border-top: none !important;
}

table.dataTable tfoot th {
    border-top: none;
    border-bottom: 1px solid #111;
}

.input-error {
    background: #faa;
    padding: 8px;
    border-radius: 5px;
    color: #f44;
    font-size: 12px;
}

.form-margin-bottom {
    margin-bottom: 0.5rem;
}


.paginate_button {
    padding: 10px !important;
    margin-left: 0px !important;
    display: inline-block !important;
    border: 1px !important;
    border-radius: 12px !important;
}

#dataTable {
    border-collapse: collapse;
    /* Ensures borders are merged */
    width: 100%;
}

#dataTable th,
#dataTable td {
    border: 1px solid #ddd;
    /* Adds a 1px solid border to table cells */
    padding: 8px;
    /* Adds padding for better spacing */
}

#dataTable th {
    background-color: #f2f2f2;
    /* Adds a light background color to headers */
}

.btn-lg {
    height: 40px; /* Custom height */
    width: 120px; /* Custom width */
    margin-bottom: 10px;
    padding: 0.5rem 1rem; /* Adjust padding if needed */
}

.modal-backdrop {
    position: relative !important;

}

.custom-notification {
    position: fixed !important;
    top: 20px;
    right: 20px;
    min-width: 300px;
    padding: 15px;
    margin: 0;
    border: none;
    border-radius: 4px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
}

.custom-notification.warning {
    background: #e9bc34;
}

.custom-notification.success {
    background: #53db73;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification-body {
    flex: 1;
}

.notification-title {
    font-weight: bold;
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.notification-message {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.notification-progress {
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.notification-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    animation: progressBar 5s linear forwards;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes progressBar {
    from { transform: translateX(-100%); }
    to { transform: translateX(0%); }
}
.form-control{
    padding: 7px !important;
}
/* Style for Success Button (Upload) */
.btn.btn-success {
    background-color: #009933 !important;
    color: white !important;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn.btn-success:hover {
    background-color: #00cc44 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.btn.btn-success:active {
    transform: scale(0.98);
}

/* Style for Secondary Button (Cancel) */
.btn.btn-secondary {
    background-color: #6c757d !important;
    color: white !important;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn.btn-secondary:hover {
    background-color: #5a6268 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.btn.btn-secondary:active {
    transform: scale(0.98);
}



/* Style for Danger Button (Cancel) */
.btn.btn-danger {
    background-color: #e01a1a !important;
    color: white !important;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn.btn-danger:hover {
    background-color: #e62121 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.btn.btn-danger:active {
    transform: scale(0.98);
}





/* Style for Primary Button (Cancel) */
.btn.btn-primary {
    background-color: #673ab7 !important;
    color: white !important;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn.btn-primary:hover {
    background-color: #804bda !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.btn.btn-primary:active {
    transform: scale(0.98);
}



/* Common enhancements for both buttons */
.btn {
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn i.fa {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.btn:hover i.fa {
    transform: scale(1.1);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}
