body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fc;
}

main {
    flex: 1;
    padding: 40px 0;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.card-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eef2f9;
}

.card-header h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a237e;
}

.card-header p {
    margin: 5px 0 0 0;
    color: #66789a;
    font-size: 0.95rem;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    gap: 15px;
    flex-wrap: wrap;
}

.search-form {
    display: flex;
    gap: 10px;
    position: relative;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.btn-refresh {
    background-color: #1a237e;
    color: white;
}

.btn-refresh:hover {
    background-color: #151c68;
    color: white;
}

.btn-pdf {
    background-color: #c82333;
    color: white;
}

.btn-pdf:hover {
    background-color: #a21b29;
    color: white;
}

.btn-custom i {
    margin-right: 8px;
}

.tabs-container {
    display: flex;
    border-bottom: 1px solid #eef2f9;
    padding: 0 30px;
}

.tab-link {
    padding: 15px 25px;
    cursor: pointer;
    text-decoration: none;
    color: #66789a;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-link:hover {
    color: #1a237e;
}

.tab-link.active {
    color: #1a237e;
    border-bottom-color: #1a237e;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 15px 20px;
    text-align: left;
    font-size: 0.9rem;
}

.data-table thead {
    background-color: #f8f9fc;
}

.data-table th {
    font-weight: 600;
    color: #33425e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tbody tr {
    border-bottom: 1px solid #eef2f9;
}

.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid #eef2f9;
}

.entries-info {
    color: #66789a;
    font-size: 0.9rem;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dcdfe6;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f4f7fc;
}