/* Styling for Feuerwehr Einsatz Plugin */
.ff-einsatz-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.ff-einsatz-form-container h3 {
    margin-top: 0;
    color: #b00; /* Feuerwehr Red */
    border-bottom: 2px solid #b00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.ff-form-group {
    margin-bottom: 15px;
}

.ff-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.ff-form-group input,
.ff-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.ff-form-group input:focus,
.ff-form-group textarea:focus {
    border-color: #b00;
    outline: none;
    box-shadow: 0 0 0 2px rgba(176, 0, 0, 0.1);
}

.ff-submit-btn {
    background: #b00;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.2s ease;
}

.ff-submit-btn:hover {
    background: #900;
}

.ff-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#ff-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

#ff-form-message.ff-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#ff-form-message.ff-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* List Flex Styles */
.ff-einsatz-list-container {
    margin: 20px 0;
}

/* Lightbox Styles */
.ff-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.ff-lightbox.active {
    display: flex;
}

.ff-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid #fff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.ff-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.ff-lightbox-close:hover {
    color: #cccccc;
}