.kuendigung-floating-btn {
    position: fixed;
    right: 18px;
    top: 18px;
    z-index: 5000;
    background-color: #D89982;
    color: #ffffff;
    border: 2px solid white;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    line-height: 1.3;
    max-width: 320px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.kuendigung-floating-btn:link,
.kuendigung-floating-btn:visited,
.kuendigung-floating-btn:hover,
.kuendigung-floating-btn:active {
    color: #ffffff !important;
    text-decoration: none;
}

.kuendigung-floating-btn:hover {
    background-color: #da501e;
}

.kuendigung-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 6000;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.kuendigung-modal-card {
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow: auto;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #c9c9c9;
    padding: 14px;
}

.kuendigung-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.kuendigung-close-btn {
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.kuendigung-form-group {
    margin-bottom: 10px;
}

.kuendigung-form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
}

.kuendigung-label-row {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.kuendigung-label-row label {
    display: inline;
    margin-bottom: 0;
}

.kuendigung-required {
    font-weight: bold;
}

.kuendigung-form-row {
    display: flex;
    gap: 12px;
}

.kuendigung-form-col {
    flex: 1 1 50%;
}

.kuendigung-form-group input,
.kuendigung-form-group textarea {
    width: 100%;
    border: 1px solid #b7b7b7;
    border-radius: 3px;
    padding: 7px;
}

.kuendigung-form-hint {
    font-size: 13px;
    color: #3f3f3f;
}

.kuendigung-form-actions {
    margin-top: 10px;
}

.kuendigung-message {
    padding: 8px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.kuendigung-message.kuendigung-success {
    background: #e8f7eb;
    border: 1px solid #8cc89a;
    color: #245231;
}

.kuendigung-message.kuendigung-error {
    background: #fdeaea;
    border: 1px solid #da9b9b;
    color: #7f2020;
}

@media (max-width: 480px) {
    .kuendigung-floating-btn {
        right: 10px;
        top: 10px;
        left: auto;
        max-width: 220px;
    }

    .kuendigung-form-row {
        flex-direction: column;
        gap: 0;
    }
}
