.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    gap: 24px;
    height: auto;
    min-height: 100vh;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--main-white);
    background-color: var(--main-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    width: 92%;
    max-width: 1200px;
}

.filter-section {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: 1200px;
    background-color: var(--main-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
}

#searchInput,
#filterSelect,
input[type="date"] {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    box-shadow: var(--shadow);
    font-size: 16px;
    transition: all 0.2s ease;
}

#searchInput:focus,
#filterSelect:focus,
input[type="date"]:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 2px rgba(var(--main-color-rgb), 0.2);
}

.date-section {
    flex-direction: column;
    display: flex;
    gap: 16px;
    width: 100%;
    align-items: center;
}

#downloadReport {
    background-color: var(--main-color);
    color: var(--main-white);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

#downloadReport:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#downloadReport::before {
    content: "\f019";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

#logsContainer {
    width: 92%;
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
}

#logsContainer h3 {
    color: var(--main-black);
    font-weight: 500;
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
}

#logsContainer p {
    padding: 16px;
    margin: 4px 0;
    background-color: var(--main-white);
    color: var(--main-black);
    border-radius: 10px;
    font-weight: 400;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    width: 100%;
}

#logsContainer p:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        min-height: 120vh;
    }
    
    h2 {
        font-size: 18px;
        font-weight: 300;
        margin-top: 80px;
    }
    
    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    #searchInput,
    #filterSelect,
    input[type="date"],
    #downloadReport {
        width: 100%;
    }
    
    .date-section {
        flex-direction: column;
        width: 100%;
    }
    
    #logsContainer p {
        font-size: 14px;
    }
}