.body {
    display: none;
}

.evento-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.evento-img {
    background-image: url('/img/login-image.jpg');
    /* Cambia la ruta según tu caso */
    background-size: cover;
    background-position: center;
    height: 200px;
    position: relative;
    border-radius: 10px;
}

.evento-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    /* capa oscura */
}

.evento-img .texto-superior {
    position: absolute;
    z-index: 1;
    color: white;
    padding: 1rem;
}

.nuevo-evento-card {
    border-radius: 10px;
    border: 1px solid #ccc;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #212121;
    font-size: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.nuevo-evento-card:hover {
    background-color: #f1f1f1;
}

.evento-card,
.nuevo-evento-card {
    height: 300px;
}

.evento-card2 {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.evento-img2 {
    background-image: url('/img/login-image.jpg');
    /* Ajusta la ruta */
    background-size: cover;
    background-position: center;
    height: 200px;
    position: relative;
}

.evento-img2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.evento-img2 .text-overlay {
    position: absolute;
    z-index: 1;
    color: white;
    padding: 1rem;
    top: 0;
    left: 0;
}

.evento-img2 .edit-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    color: white;
    z-index: 1;
}

.info-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.counter-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.template-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.template-img {
    background-image: url('/img/login-image.jpg');
    /* Ajusta la ruta */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    height: 120px;
    position: relative;
}

.template-img::before {
    content: '';
    position: absolute;
    border-radius: 10px;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.template-img .template-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.5rem 1rem;
    color: white;
    font-weight: bold;
    z-index: 1;
}

.template-img .edit-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem;
    color: white;
    z-index: 1;
}

.ubicacion-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1rem;
    height: 100%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.nuevo-etapa {
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ubicacion-card:hover {
    transform: scale(1.02);
}

.nuevo-etapa:hover {
    transform: scale(1.02);
    background-color: #f1f1f1;
}

.ubicacion-card,
.nuevo-etapa{
    height: 250px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: white;
}

#tablaInvitaciones {
    font-size: small;
}