body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #f4f4f4;
}

.event {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.event img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.event h2 {
    margin-top: 10px;
}

.summary {
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.summary.expanded {
    max-height: 500px;
}

.more-btn {
    background-color: #007BFF;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.link-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.link-btn.disabled {
    background-color: #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.status {
    margin-top: 10px;
    font-weight: bold;
}

.status.available {
    color: green;
}

.status.unavailable {
    color: red;
}