/* General Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
}

/* Page Title Area */
.page-title-area {
    color: white;
    text-shadow: 1px 1px 2px #000;
    padding: 80px 0;
    background-position: center;
    background-repeat: no-repeat;
}

.page-title-content h2 {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
}

.page-title-content .breadcrumb li {
    display: inline;
    font-size: 16px;
    color: #fff;
}

.page-title-content .breadcrumb li a {
    color: #ffb3b3;
    text-decoration: underline;
}

.page-title-content .breadcrumb li + li::before {
    content: " / ";
    padding: 0 5px;
    color: #fff;
}

/* Filter Form */
form {
    background-color: #fff5f5;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f0c1c1;
    box-shadow: 0 2px 6px rgba(211, 47, 47, 0.1);
    margin-bottom: 30px;
}

form select {
    padding: 10px 15px;
    margin: 10px 10px 0 0;
    border: 1px solid #d32f2f;
    border-radius: 6px;
    background-color: #fff;
    color: #d32f2f;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

form select:focus {
    border-color: #b71c1c;
    background-color: #fff8f8;
    outline: none;
}

form select:hover {
    background-color: #fff0f0;
}

/* Table Styling */
.table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.table th {
    background-color: #d32f2f;
    color: #fff;
    font-weight: bold;
    padding: 12px;
    text-align: center;
    font-size: 15px;
}

.table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.table tr:hover {
    background-color: #fff3f3;
}

/* Download Link */
.table a {
    color: #d32f2f;
    font-weight: 600;
    text-decoration: none;
}

.table a:hover {
    text-decoration: underline;
    color: #b71c1c;
}

/* Responsive Styling */
@media (max-width: 768px) {
    form select {
        width: 100%;
        margin-bottom: 15px;
    }

    .table th,
    .table td {
        font-size: 13px;
        padding: 10px;
    }

    .page-title-content h2 {
        font-size: 28px;
    }
}
