.event-detail-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.event-header img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.event-placeholder {
    width: 100%;
    height: 300px;
    border: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #999;
    border-radius: 8px;
}

.event-info {
    margin-top: 20px;
}

.event-info .category {
    background: #d0e1ff;
    color: #0056b3;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85em;
}

.event-info .title {
    margin: 10px 0;
    font-size: 2em;
}

.event-info .location, .event-info .dates {
    margin: 5px 0;
}

.event-info a.back-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0066ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.event-info a.back-btn:hover {
    background-color: #004ccc;
}

.event-description {
    margin-top: 30px;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    min-height: 150px;
    background-color: #f9f9f9;
}