.ft-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.4);
}
.ft-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    position: relative;
}
.ft-modal-close {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 24px;
    cursor: pointer;
}
form#ft-event-form input, 
form#ft-event-form textarea {
    margin-bottom: 15px;
}
form#ft-event-form {
    display: flex;
    flex-direction: column;
}
form#ft-event-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.ft-dashboard-widgets button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s;
}