
/* Event Container */
.evdet-container {
    display: flex;
    border-radius: 12px;
    border: 1px solid #e5e7eb;

    background: #fff;
    justify-content: center;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    width: 962px;
    margin: 0 auto;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    
}

/* Header */
.evdet-header {
    width: 749px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
}

.evdet-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.evdet-title h2 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #4F5466;
}

/* Event Card */
.evdet-card {
    width: 749px;
    background: white;
   
}

.evdet-image-box {
    position: relative;
}

.evdet-image {
    width: 100%;
    border-radius: 6px;
}

.evdet-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.6);
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
}

/* Event Information */
.evdet-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.evdet-name {
    font-size: 28px;
    font-weight: 700;
}

.evdet-location {
    font-size: 14px;
    font-weight: 600;
    color: #54595F;
}

/* Event Button */
.evdet-button {
    padding: 10px 16px;
    background: #289F35;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

/* Event Details */
.evdet-details-section {
    width: 749px;
    padding: 16px 0;
    background: white;
    border-radius: 8px;  
align-items: flex-start;
gap: 16px;
}

.evdet-details-section h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #4F5466;
    margin-bottom: 20px;
}

.evdet-schedule {
    display: flex;
    justify-content: space-between;
    
    background: #F9F9FB;
    border-radius: 4px;

}
.evdet-schedule .evdet-price, .evdet-schedule .evdet-date, .evdet-schedule .evdet-time{
    align-self: center;
    justify-self: flex-start;
    padding: 12px;
    width: 33%;

}
.evdet-schedule .evdet-time{
    border-left: 1px solid #EAECF0;
    border-right: 1px solid #EAECF0;
}

.evdet-price { 
    font-weight: 700;
}

.evdet-price span {
    font-size: 14px;
    color: #54595F;
}

/* Event Location */
.evdet-location-section {
    width: 749px;
}

.evdet-map {
    display: flex;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
border: 1px solid #E5E5E5;
background: #E5E5E5;
width: 749px;
height: 149px; 
}

.evdet-map img {
    width: 100%;
    border-radius: 8px;
}

.map-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 8px 12px;
    background: white;
    font-size: 14px;
    border-radius: 
}

.evdet-description{
    color: var(--Body, #54595F);
font-family: "DM Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 170%; /* 23.8px */
padding: 20px 0px;
}
