/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #dedede;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    text-align: center;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.container {
    margin-top: 80px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 80px auto 20px auto;
}

.filter-search-container {
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.filter-search-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-search-container label {
    font-weight: bold;
    color: #333;
}

.filter-search-container input[type="date"],
.filter-search-container input[type="text"] {
    width: 100%;
    padding: 8px;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.filter-search-container input[type="submit"] {
    background-color: #19BC3E;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.filter-search-container input[type="submit"]:hover {
    background-color: #19BC3E;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #f4f4f4;
}

table tr:hover {
    background-color: #f9f9f9;
}

.back-button {
    display: inline-block;
    background-color: #6c757d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

.back-button:hover {
    background-color: #5a6268;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 10px;
    }

    header h1 {
        font-size: 20px;
    }

    .filter-search-container form {
        flex-direction: column;
    }

    .filter-search-container input[type="submit"] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 5px;
    }

    header h1 {
        font-size: 18px;
    }

    .filter-search-container input[type="submit"] {
        padding: 10px;
    }
}
