/* TT09 Search Component Styles */

.select2-with-icon .select2-container--default {
    width: 100% !important;
}

.select2-with-icon .select2-container--default .select2-selection--single {
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0 0.75rem;
    background-color: white;
    transition: all 0.3s ease;
}

.select2-with-icon .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #115ec6;
    box-shadow: 0 0 0 3px rgba(17, 94, 198, 0.1);
}

.select2-with-icon .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 2.5rem;
    color: #1e293b;
    font-size: 0.875rem;
}

.select2-with-icon .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 50%;
    transform: translateY(-50%);
    border-color: #94a3b8 transparent transparent transparent;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* Table Styles */
#search-results-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#search-results-table thead {
    background-color: #f1f5f9;
    border-bottom: 2px solid #e2e8f0;
}

#search-results-table thead th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#search-results-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

#search-results-table tbody tr:hover {
    background-color: #f8fafc;
}

#search-results-table tbody td {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    color: #334155;
}

/* Status Badge Styles */
.bg-green-100 {
    background-color: #dcfce7;
}

.text-green-700 {
    color: #15803d;
}

.bg-yellow-100 {
    background-color: #fef3c7;
}

.text-yellow-700 {
    color: #b45309;
}

/* Link Styles */
#search-results-table a {
    color: #115ec6;
    text-decoration: none;
    transition: color 0.2s ease;
}

#search-results-table a:hover {
    color: #0d47a1;
}

/* Modal Styles */
#detailModal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#modal-content {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Pagination Styles */
.pagination-btn {
    transition: all 0.2s ease;
    font-weight: 600;
}

.pagination-btn:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination-btn.bg-primary {
    background-color: #115ec6;
    border-color: #115ec6;
    color: white;
}

.pagination-btn.bg-primary:hover {
    background-color: #0d47a1;
    border-color: #0d47a1;
}

/* Empty State */
#empty-state-placeholder {
    animation: fadeIn 0.5s ease;
}

/* Loading State */
#loading-state {
    animation: fadeIn 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {

    #search-results-table thead th,
    #search-results-table tbody td {
        padding: 0.75rem;
        font-size: 0.75rem;
    }

    .select2-with-icon .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 36px;
        padding-left: 2rem;
    }
}