/* public/css/edit.css */

body {
    background-color: #f4f6f8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.edit-event-card {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: box-shadow 0.3s ease;
}

.edit-event-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    font-weight: 600;
    color: #2c3e50;
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-danger:hover {
    background-color: #c82333;
}

form input,
form textarea,
form select {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

form label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}
