.edit-event-page {
    width: 80%;
    margin: 2em auto;
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.edit-event-page h1 {
    color: #cc5500;
    text-align: center;
    margin-bottom: 1.5em;
}

.edit-event-form label {
    display: block;
    margin-top: 1em;
    font-weight: bold;
    color: #333;
}

.edit-event-form input[type="text"],
.edit-event-form input[type="date"],
.edit-event-form input[type="time"],
.edit-event-form input[type="file"] {
    width: 100%;
    padding: 0.6em;
    margin-top: 0.3em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.save-btn {
    display: block;
    margin: 2em auto 0;
    background: #cc5500;
    color: white;
    border: none;
    padding: 0.8em 1.6em;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.save-btn:hover {
    background: #e76f51;
}

.file-section p a {
    color: #cc5500;
    text-decoration: none;
}

.excel-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #007b43;
    font-weight: bold;
}

.excel-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.download-template {
    margin-top: 2em;
    text-align: center;
}

.success {
    color: green;
    font-weight: bold;
    text-align: center;
}

.error {
    color: red;
    font-weight: bold;
    text-align: center;
}
