body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    font-size: 14px;
}

.header {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.shrink {
    padding: 10px;
    text-align: left;
}

.header.shrink img {
    width: 80px;
}

.banner {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f8de53; */
}

.banner img {
    width: 90%;
    /* height: auto; */
    width: 350px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 15px;
}

.header img {
    width: 120px;
}

.product-container {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    gap: 40px;
    margin: 40px auto;
    padding: 20px;
    width: 90%;
    max-width: 1100px;
    /* align-items: center; */
    border: 1px solid #FFD65A;
    border-radius: 15px;
}

.product-container h2 {
    text-align: center;
    font-size: 26px;
    color: #444;
    margin-bottom: 25px;
    font-weight: 500;
}

.product-container input,
.product-container select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.product-container input:focus,
.product-container select:focus {
    border-color: #4CAF50;
}

.product-container select {
    background-color: #fff;
}

.link {
    /* background-color: #df1a1a; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-bottom: 10px;
}

.link img {
    width: 38px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link p {
    margin-right: 10px;
    font-weight: bold;
    text-decoration: underline;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .product-container {
        width: 90%
    }
}

@media screen and (max-width: 768px) {

    .product-container input,
    .product-container select {
        padding: 12px;
        font-size: 14px;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {

    .product-container input,
    .product-container select {
        padding: 10px;
        font-size: 12px;
        width: 100%;
    }
}

/* .header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header img {
    width: 120px;
    margin-left: 0;

}

.header.shrink {
    padding: 5px 20px;
} */

.header.shrink img {
    width: 80px;
}


.submit-btn {
    background-color: #f8de53;
    color: #00943d;
    font-weight: bold;
    padding: 13px 25px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    width: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background-color: #f8de53;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {

    .submit-btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {

    .submit-btn {
        width: 100%;
    }
}

#preview {
    margin: 10px;
    max-width: 200px;
    max-height: 200px;
    display: none;
    /* Initially hide the preview */
}

#previewPage {
    margin: 10px;
    max-width: 200px;
    max-height: 200px;
    display: none;
    /* Initially hide the preview */
}

.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}