.container-profile {
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 8px;
}
.profile-info {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

/* Container do perfil */
.perfil-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 400px;
    padding: 15px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.perfil-container h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Formulário */
.perfil-container form {
    width: 100%;
}

.perfil-container input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.perfil-container input:disabled {
    background-color: #e9ecef;
}


/* Seção de eventos */
.eventos-participados {
    width: 90%;
    max-width: 400px;
    padding: 15px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.eventos-participados h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.UlLiPerfil {
    padding: 8px;
    background: #e9e9e9;
    margin-bottom: 6px;
    border-radius: 5px;
}

ul li a:hover {
    text-decoration: underline;
}

/* Botão Criar Evento */
.criar-evento-btn {
    display: block;
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: bold;
}

.eventos-container {
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    padding: 15px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.eventos-container h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}


/* Estilização dos títulos de categorias */
.evento-status {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    padding: 8px;
    border-radius: 5px;
}

/* Cores por status */
.ativo {
    background-color: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
}

.pausado {
    background-color: #fff3cd;
    color: #856404;
    border-left: 5px solid #ffc107;
}

.cancelado {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}

/* Estilização dos eventos individuais */
.evento-item {
    padding: 10px;
    background: #f8f9fa;
    margin-bottom: 8px;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.evento-item:hover {
    transform: scale(1.02);
}

.evento-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.evento-item a:hover {
    text-decoration: underline;
}

.criar-evento-btn:hover {
    background-color: #0056b3;
}

/* Rodapé */
footer {
    background-color: #1f1f1f;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    font-size: 14px;
}

/* 🎟️ Estilização dos ingressos individuais */
.ingresso-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #007bff;
    transition: transform 0.2s ease-in-out;
}

.ingresso-item:hover {
    transform: scale(1.02);
}

/* 🎭 Nome do evento */
.ingresso-evento {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* 📸 QR Code */
.qr-code-container {
    text-align: center;
    margin-top: 10px;
}

.qr-code-ingresso {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    border: 2px solid #ddd;
    max-width: 100%;
}

/* 🌍 Media Queries para Responsividade */
@media (max-width: 768px) {
    .ingresso-item {
        padding: 12px;
    }

    .qr-code-ingresso {
        width: 140px;
        height: 140px;
    }
}


.checkin-btn.ativo {
    background-color: #28a745;
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.2s;
}

.checkin-btn.ativo:hover {
    background-color: #218838;
}

@media (max-width: 480px) {
    .ingresso-item {
        padding: 10px;
    }

    .qr-code-ingresso {
        width: 130px;
        height: 130px;
    }
}

label {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
}

.btn-editar {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-editar:hover {
    background: #0056b3;
}