/* Search Section */
.search-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 6px;
}

.search-title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.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;
}

.input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--input-border);
    border-radius: var(--input-radius);
}

/* Table Section */
.table-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 6px;
}

.please-text,
.no-data-text {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0;
    color: var(--color-muted);
}

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

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

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
}

.styled-table th {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
}

.styled-table tr:hover {
    background: #f5f5f5;
}

.total-count {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}
