.to-purple-600 {
    background: #07294d !important;
    color: white;
}
.text-indigo-300 {
    color: white !important;
}
.text-indigo-600{
    color: #07294d !important;
    font-weight: bold !important;
}
.focus\:ring-2:focus{
    --tw-ring-color: #07294d !important;
}
.focus\:border-indigo-500:focus{
    border-color: #07294d !important;
}
.sm\:max-w-md{
max-width:40rem !important;
}


.dataTables_wrapper {
    font-family: inherit;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: #374151;
    margin-bottom: 1rem;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    margin-left: 0.5rem;
    outline: none;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    margin: 0 0.5rem;
    outline: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    margin: 0 0.125rem;
    color: #374151;
    text-decoration: none;
    background: white;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #374151;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #07294d;
    border-color: #07294d;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #07294d;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    color: #9ca3af;
    cursor: not-allowed;
    background: #f9fafb;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #9ca3af;
}

table.dataTable thead th {
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    padding: 0.75rem 1.5rem;
}

table.dataTable tbody tr {
    border-bottom: 1px solid #f3f4f6;
}

table.dataTable tbody tr:hover {
    background-color: #f9fafb;
}

table.dataTable tbody td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

/* Responsive controls styling */
.dtr-control {
    position: relative;
    cursor: pointer;
    color: #6366f1;
}

/* .dtr-control:before {
    top: 50%;
    left: 50%;
    height: 16px;
    width: 16px;
    margin-top: -8px;
    margin-left: -8px;
    display: block;
    position: absolute;
    color: white;
    border: 2px solid white;
    border-radius: 14px;
    box-shadow: 0 0 3px #444;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: 'Courier New', Courier, monospace;
    line-height: 14px;
    content: '+';
    background-color: #6366f1;
} */

.dtr-control.show:before {
    content: '-';
}

/* Responsive details styling */
.dtr-details {
    background-color: #f8fafc;
    border-left: 4px solid #6366f1;
    padding: 1rem;
    margin: 0.5rem 0;
}

.dtr-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dtr-details li {
    margin: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.dtr-title {
    font-weight: 600;
    color: #374151;
    min-width: 80px;
    margin-right: 1rem;
}

.dtr-data {
    color: #6b7280;
    flex: 1;
}
#createUserModal.show {
    animation: fadeIn 0.3s ease-out;
}

#createUserModal.show .inline-block {
    animation: slideInUp 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Input Focus States */
.form-field:focus-within label {
    color: #4f46e5;
}

/* Error State Styling */
.error input,
.error select {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message::before {
    content: "⚠";
    font-size: 0.75rem;
}

/* Loading State */
.loading .submit-text {
    display: none;
}

.loading .loading-spinner {
    display: inline-flex;
}

/* Improved Select Styling */
select {
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); */
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem 1.25rem;
}

/* Enhanced Backdrop Blur */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Responsive Improvements */
@media (max-width: 640px) {
    #createUserModal .sm\\:max-w-md {
        max-width: calc(100vw - 2rem);
        margin: 1rem;
    }
    
    #createUserModal .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.error {
    color: #dc3545;
    font-weight: 500;
    font-size: 14px;
}
.bg-indigo-600{
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.modal-backdrop{
    position: relative !important;
}