/* Search Section */
.search-card {
    background: #1a2535;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.search-title {
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #00c896;
    letter-spacing: -0.01em;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #8fa3be;
    font-size: 0.88rem;
}

.input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #e8f0fe;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.input:focus {
    border-color: #00c896;
    box-shadow: 0 0 0 2px rgba(0, 200, 150, 0.15);
}

/* Table Section */
.table-card {
    background: #1a2535;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.please-text,
.no-data-text {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 24px 0;
    color: #8fa3be;
}

/* Table */
.table-responsive {
    overflow-x: auto;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.9rem;
}

.styled-table th,
.styled-table td {
    padding: 13px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #e8f0fe;
}

.styled-table th {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.15), rgba(0, 200, 150, 0.08));
    color: #00c896;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(0, 200, 150, 0.25);
}

.styled-table tr:hover {
    background: rgba(0, 200, 150, 0.04);
}

.total-count {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #00c896;
}
