* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.content {
    background-color: #fff;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.filter-section {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

select,
input[type="number"],
input[type="range"],
button {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

button {
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
}

button:hover {
    background-color: #45a049;
}

#dynamicFilters .section {
    margin-bottom: 20px;
}

#totalPrice {
    font-weight: bold;
}

#downloadPDF {
    background-color: #007BFF;
    margin-top: 10px;
}

#downloadPDF:hover {
    background-color: #0056b3;
}

/* Logo Styling */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 100%; /* Ensures the logo scales according to container size */
    height: auto; /* Maintains aspect ratio */
    width: 350px; /* Default width for larger screens */
}

/* Responsive Design for Different Screen Sizes */
@media screen and (max-width: 1024px) {
    .content {
        padding: 15px;
        max-width: 90%;
    }

    h1 {
        font-size: 1.4rem;
    }

    button,
    select,
    input {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .content {
        padding: 15px;
        max-width: 100%;
    }

    h1 {
        font-size: 1.3rem;
    }

    button,
    select,
    input {
        font-size: 0.95rem;
    }

    #dynamicFilters .section {
        padding: 5px;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding: 10px;
        max-width: 100%;
    }

    h1 {
        font-size: 1.1rem;
    }

    button,
    select,
    input {
        font-size: 0.85rem;
    }

    #dynamicFilters .section {
        margin-bottom: 15px;
    }

    #totalPrice {
        font-size: 1rem;
    }
}
/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 0.9rem;
}
