/* .vue__time-picker input.display-time {
    border: 0;
    width: 95%;
    height: auto;
    padding: 0;
    font-size: 1em;
} */
/* .fixed-bottom, .fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
} */
.notify{
    /* justify-content: center; */
    z-index: 9999;
}


/* Flex settings for form-group */
.form-groupp.d-flex {
    display: flex;
    align-items: stretch; /* Aligns label and textarea to full height */
    margin-bottom: 0; /* Removes extra space if any */
}

/* Label width 30% */
.label-30 {
    flex: 0 0 40%;
    max-width: 40%;
    /* padding: 23px; */
    padding-bottom: 42px;
    padding-top: 3px;
    padding-left: 15px;
    font-size: 1rem;
    background-color: #e6f1ff;
    font-weight: 500;
    margin-bottom: 0px; 
    color: #333;
    border: 1.5px solid #d7c4c4;
    border-right: none;
    display: flex;
    align-items: center;
}

/* Textarea width 70% */
.textarea-70 {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 10px;
    font-size: 1rem;
    border: 1.5px solid #d7c4c4;
    border-left: none; /* Removes left border to join with label */
    border-radius: 0; /* No rounded corners */
}

 
/* input[type="search"] {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}
 
input[type="search"]::placeholder {
    color: #aaa;
    font-style: italic;
}
 
input[type="search"]:focus {
    border-color: #007bff; 
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); 
} */

/* Wrapper style for DataTables controls */
/* #myTable_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    font-size: 14px;
} */

/* Length selector container */
.dataTables_length {
    display: flex;
    align-items: center;
}

.dataTables_length label {
    margin: 0;
    font-weight: 500;
}

.dataTables_length select {
    margin-left: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.dataTables_length select:focus {
    border-color: #007bff;
}

/* Search filter container */
.dataTables_filter {
    display: flex;
    align-items: center;
}

.dataTables_filter label {
    margin: 0;
    font-weight: 500;
}

.dataTables_filter input[type="search"] {
    margin-left: 5px;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 10px;
}

.dataTables_filter input[type="search"]:focus {
    border-color: #007bff;
}

/* Additional styling for hover and focus */
select, input[type="search"] {
    background-color: #fff;
}

select:hover, input[type="search"]:hover {
    border-color: #007bff;
}


/* --------------------------------- */
    #myTable_paginate {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-family: "Inter", sans-serif;
    }
    #myTable_paginate a {
        /* padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        font-size: 0.875rem;
        line-height: 1.25rem; */
        margin-top: 6px;
        padding: 0.3rem 1rem;
        border-radius: 3.375rem;
        font-size: 0.675rem;
        line-height: 1.25rem;
        text-decoration: none;
        cursor: pointer;
        background: var(--sec, #d4d4d8);
        color: var(--liClr, #09090b);
        transition: background 0.3s ease, color 0.3s ease;
    }
    
    #myTable_paginate a:hover {
        background: var(--activeBg, linear-gradient(to bottom right, #71717a, #174ce0));
        color: var(--activeClr, #fafafa);
    }
    
    #myTable_paginate a.paginate_button.current {
        font-weight: bold;
        background: var(--activeBg, linear-gradient(to bottom right, #7595ee, #9ca3af));
        color: var(--activeClr, #fafafa);
        box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.25);
    }
    
    #myTable_paginate a.paginate_button.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    #myTable_paginate span {
        display: flex;
        gap: 0.5rem;
    }
  /* --------------------- */
    .dataTables_info {
        margin-top: 9px;
        font-family: Arial, sans-serif;
        font-size: 12px;
        color: #333;
        padding: 4px;
        padding-right: 3px;
        background-color: #96a8f7;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        display: inline-block;
    }

    .dataTables_info::before {
        content: "📄 ";
        font-size: 15px;
        color: #5a67d8;
        margin-right: 5px;
    }

    .dataTables_info span {
        font-weight: bold;
        color: #2d3748;
    }

    .dataTables_info:hover {
        background-color: #ebf4ff;
        color: #2b6cb0;
        transition: all 0.3s ease;
    }
    .main-layout-card .main-layout-card-content {
        /* padding: 27px; */
        padding-top: 12px;
        padding-right: 27px;
        padding-bottom: 27px;
        padding-left: 27px;
    }