:root {
    --primary-color: #e83e8c;
    --secondary-color: #6f42c1;
    --accent-color: #20c997;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --bg-color: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--bg-color);
    background-image: url('https://images.unsplash.com/photo-1579547945413-497e1b99dac0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: -1;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--box-shadow);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Estilos do Menu */
nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.btn-nav, .btn-login, .btn-recuperar {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    background-color: rgba(232, 62, 140, 0.1);
}

.btn-nav:hover, .btn-login:hover, .btn-recuperar:hover {
    background-color: rgba(232, 62, 140, 0.2);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-registro {
    text-decoration: none;
    color: white;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(232, 62, 140, 0.3);
}

.btn-registro:hover {
    background-color: #d5317e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(232, 62, 140, 0.4);
}

/* Hero Section */
.hero {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1612423284934-2850a4ea6b0f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Info Section */
.info-section {
    padding: 80px 5%;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    margin: 0 5% 60px;
}

.info-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.info-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #495057;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(232, 62, 140, 0.3);
}

.btn-primary:hover {
    background-color: #d5317e;
    transform: translateY(-3px);
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    padding: 0 5%;
    margin-bottom: 80px;
}

.feature {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    flex: 1;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(232, 62, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    padding: 0 5% 80px;
}

.gallery h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-container {
        flex-direction: column-reverse;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .features {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .info-section {
        padding: 50px 5%;
        margin: 0 3% 40px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 3%;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .info-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .info-section {
        padding: 30px 5%;
        border-radius: 15px;
    }
    
    .feature {
        padding: 25px 15px;
    }
    
    .social-links {
        gap: 10px;
    }
}

/* Popup de Cadastro */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Botões de fechar popup */
.close-popup, .close-popup-login, .close-popup-email, .close-popup-recuperar, .close-popup-senha {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
}

.close-popup:hover, .close-popup-login:hover, .close-popup-email:hover, .close-popup-recuperar:hover, .close-popup-senha:hover {
    color: var(--primary-color);
    background-color: rgba(232, 62, 140, 0.1);
}

.popup-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.popup-content p {
    margin-bottom: 25px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.25);
    outline: none;
}

/* Estilos para o campo de senha com ícone */
.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-field input {
    padding-right: 40px;
}

.resultado-cadastro {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(232, 62, 140, 0.05);
    border-radius: 10px;
    text-align: center;
}

.resultado-cadastro h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.token-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px dashed var(--primary-color);
}

#token-gerado {
    font-family: monospace;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-copiar {
    background: none;
    border: none;
    color: var(--dark-color);
    margin-left: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.btn-copiar:hover {
    color: var(--primary-color);
}

.token-info {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

/* Ajustes responsivos para o popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 30px;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 20px;
        margin: 15% auto;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
}

/* Menu Logado */
.token-display {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    border-radius: 10px;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(232, 62, 140, 0.3);
}

.token-display span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.nome-destaque {
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
}

.token-destaque {
    font-weight: 700;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 6px;
    margin-left: 10px;
    letter-spacing: 1.5px;
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#menu-logado {
    display: flex;
    align-items: center;
}

.menu-buttons {
    display: flex;
    gap: 12px;
}

.btn-alterar-email, .btn-alterar-senha, .btn-logout {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-alterar-email {
    background-color: rgba(111, 66, 193, 0.1);
    color: var(--secondary-color);
}

.btn-alterar-email:hover {
    background-color: rgba(111, 66, 193, 0.2);
    transform: translateY(-2px);
}

.btn-alterar-senha {
    background-color: rgba(232, 62, 140, 0.1);
    color: var(--primary-color);
}

.btn-alterar-senha:hover {
    background-color: rgba(232, 62, 140, 0.2);
    transform: translateY(-2px);
}

.btn-logout {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.btn-logout:hover {
    background-color: rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
}

.resultado-login {
    margin-top: 20px;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

.resultado-login.erro {
    background-color: rgba(255, 0, 0, 0.1);
    color: #FF3333;
    border: 1px solid #FF6666;
}

.resultado-login.sucesso {
    background-color: rgba(0, 128, 0, 0.1);
    color: #339933;
    border: 1px solid #66CC66;
}

#menu-nao-logado {
    display: flex;
    gap: 15px;
    align-items: center;
}

#menu-nao-logado li {
    flex: 1;
}

#menu-nao-logado a {
    width: 180px;
    text-align: center;
    display: block;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login, .btn-recuperar {
    color: var(--dark-color);
    background-color: rgba(232, 62, 140, 0.1);
}

.btn-login:hover, .btn-recuperar:hover {
    background-color: rgba(232, 62, 140, 0.2);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-registro {
    color: white;
    background-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(232, 62, 140, 0.3);
}

.btn-registro:hover {
    background-color: #d5317e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(232, 62, 140, 0.4);
}

/* Ajuste responsivo para os botões */
@media (max-width: 768px) {
    #menu-nao-logado {
        width: 100%;
        flex-direction: column;
    }

    #menu-nao-logado a {
        width: 100%;
    }
}

.popup-recuperar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-recuperar .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

.popup-recuperar .close-popup-recuperar {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    padding: 0;
}

.popup-recuperar .close-popup-recuperar:hover {
    color: #333;
}

.popup-recuperar h2 {
    margin: 0 0 15px;
    color: var(--primary-color);
    font-size: 1.5em;
}

.popup-recuperar p {
    margin-bottom: 20px;
    color: #666;
}

.popup-recuperar form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-recuperar input[type="email"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.popup-recuperar input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.2);
}

.popup-recuperar button[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-recuperar button[type="submit"]:hover {
    background-color: var(--primary-color);
}

.resultado-recuperacao {
    display: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-weight: 500;
}

.resultado-recuperacao.sucesso {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.resultado-recuperacao.erro {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Removendo estilos não utilizados */
.redefinir-senha {
    display: none;
}

.form-redefinir {
    display: none;
}

.mensagem {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.mensagem.erro {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mensagem.sucesso {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mensagem a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

.mensagem a:hover {
    text-decoration: underline;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.button-group .btn-primary {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }
    
    .button-group .btn-primary {
        width: 100%;
    }
}

/* Seção de Pedidos */
.orders-section {
    padding: 2rem;
    background-color: #f9f9f9;
    margin-top: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.orders-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filtro-btn {
    padding: 0.5rem 1.5rem;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filtro-btn:hover {
    background-color: rgba(77, 55, 77, 0.1);
}

.filtro-btn.filtro-ativo {
    background-color: var(--primary-color);
    color: white;
}

.orders-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.order-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.order-id {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

.order-status {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 40px;
}

.status-pending {
    background-color: #fff3e0;
    color: #e65100;
}

.status-attended {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.order-content {
    flex: 1;
}

.order-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.order-date, .order-attended-date {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #666;
}

.order-attended-date {
    color: #2e7d32;
}

.order-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

.order-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1;
}

.delete-order {
    background-color: transparent;
    border: none;
    color: #e53935;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.delete-order:hover {
    background-color: rgba(229, 57, 53, 0.1);
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.sem-resultados {
    text-align: center;
    padding: 3rem 1rem;
}

.sem-resultados p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
}

/* Responsividade para a seção de pedidos */
@media (max-width: 768px) {
    .orders-container {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
    }
}

/* Estilo para o contador de login automático */
.contador-login {
    margin-top: 15px;
    padding: 10px;
    background-color: #f0f8ff;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    color: #1565c0;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

.order-image {
    text-align: center;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 0.5rem;
}

.preview-image {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

.waiting-image {
    opacity: 0.5;
    filter: grayscale(100%);
}

.download-section {
    margin-top: 15px;
    text-align: center;
}

.download-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.download-link:hover,
.download-link:visited,
.download-link:active {
    background-color: #45a049;
    color: white !important;
    text-decoration: none;
}

.download-link i {
    margin-right: 5px;
} 