﻿.actividades-nav-icons {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 0rem;
    justify-content: center;
    padding-right:5%;
}
.wmc-icon-calendar{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:row;
    padding-right:5%;
    flex-wrap: nowrap;
}
.act-icons-container{
    display: flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
}
.actividades-p{
    width:150px;
}
.manoflecha {
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
     padding-inline:5%;
     gap:15px;
}
.manoflecha img{
    height:40px;
}
.save-image-actividades {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:20px;
    flex-direction: row;
    width: 300px;
}
.fecha-titulo-actividades{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction:row;
}
    .fecha-titulo-actividades h1 {
        font-size: 36px;
        margin-bottom: 0.2rem;
        line-height: 54px;
        font-weight:600;
    }

    .fecha-titulo-actividades h3 {
        font-size: 22px;
        margin-bottom: 0.2rem;
        font-weight: 700;
        color: #6F4C94;
        line-height:34px;
    }

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 20px 0;
}

.price {
    color: #6b46c1;
    font-weight: bold;
    margin: 15px 0;
}

.reservation-form h4 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f3f4f6;
    padding: 10px;
    border-radius: 8px;
}

.input-icon {
    font-size: 20px;
}

.form-control {
    border: none;
    background: transparent;
    width: 100%;
    padding: 5px;
    font-size: 16px;
}

.person-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-btn {
    background-color: #6b46c1;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

    .counter-btn:hover {
        background-color: #553c9a;
    }

#personCount {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
}

.reserve-btn {
    width: 100%;
    background-color: #6b46c1;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .reserve-btn:hover {
        background-color: #553c9a;
    }