.events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.event-item {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.event-image-container {
    position: relative;
}

.event-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.event-image:hover {
    transform: scale(1.05);
}

.price {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}

.price a {
    color: black;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
}

.event-name {
    margin-top: 10px;
    font-size: 16px;
}

.header-area {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

.notification {
    background-color: #4CAF50;
    color: white; 
    padding-top: 20px;
    padding-block-end: 10px;
    position: fixed;
    top: 70px;
    width: 100%;
    text-align: center;
    z-index: 1000;
}

.submenu {
    display: none;
    position: absolute;
    background-color: white;
    list-style: none;
    padding: 0;
    margin-top: 5px;
}

.nav li {
    position: relative;
}

.nav li:hover .submenu,
.nav li:focus-within .submenu {
    display: block;
}

.content-section {
    margin-top: 160px;
}

.content-container {
    background-color: #d0f0fd;
    padding: 20px;
    border-radius: 8px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-inner {
    display: inline-flex;
    animation: scroll 20s linear infinite;
}

.carousel-item {
    display: inline-block;
    width: 300px;
    margin-right: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.col-md-4 {
    padding: 0;
}

.event-image {
    width: 100%;
    height: auto;
}

.carousel-container {
    margin-top: 140px;
}

.custom-link { 
    color: black;
    text-decoration: none;
}

/* /////////////////////////////////////////////////nUEVO///////////////////////////////////////// */
.chat-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.close-button {
    background: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.chat-message {
    margin-bottom: 10px;
}

.options {
    display: flex;
    flex-direction: column;
}

.optionButton {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px 0;
}

.optionButton:hover {
    background-color: #0056b3;
}

.custom-link {
    color: black;
    text-decoration: none;
}