/**
 * Notification Modal Styles - Im Design der Webseite
 */

.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.notification-modal-content {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-color, #4a9eff);
    border-radius: 8px;
    min-width: 400px;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.notification-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}

.notification-modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: color 0.2s;
}

.notification-modal-close:hover {
    color: rgba(255, 255, 255, 0.9);
}

.notification-modal-body {
    padding: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.notification-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 300;
    font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    cursor: pointer;
    transition: all 0.2s;
}

.notification-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.notification-btn-primary {
    background: var(--primary-color, #4a9eff);
    border-color: var(--primary-color, #4a9eff);
    color: #fff;
}

.notification-btn-primary:hover {
    background: #3a8eef;
    border-color: #3a8eef;
}

.notification-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.notification-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Form Styles für Modals */
.notification-modal-body .form-group {
    margin-bottom: 20px;
}

.notification-modal-body .form-group:last-of-type {
    margin-bottom: 0;
}

.notification-modal-body label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.notification-modal-body input[type="text"],
.notification-modal-body input[type="email"],
.notification-modal-body input[type="password"],
.notification-modal-body textarea,
.notification-modal-body select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 300;
    font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    transition: all 0.2s;
    outline: none;
}

.notification-modal-body input[type="text"]:focus,
.notification-modal-body input[type="email"]:focus,
.notification-modal-body input[type="password"]:focus,
.notification-modal-body textarea:focus,
.notification-modal-body select:focus {
    border-color: var(--primary-color, #4a9eff);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.1);
}

.notification-modal-body textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.notification-modal-body select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.notification-modal-body small {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.4;
}

/* Radio Button Styles */
.notification-modal-body .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.notification-modal-body .radio-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
}

.notification-modal-body .radio-label:hover {
    color: rgba(255, 255, 255, 0.9);
}

.notification-modal-body .radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 2px;
    cursor: pointer;
    appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.notification-modal-body .radio-label input[type="radio"]:checked {
    border-color: var(--primary-color, #4a9eff);
    background: var(--primary-color, #4a9eff);
}

.notification-modal-body .radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.notification-modal-body .radio-label span {
    flex: 1;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.notification-modal-body .radio-label input[type="radio"]:checked + span {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Buttons */
.notification-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.notification-modal-footer .notification-btn {
    min-width: 100px;
}

