/* Widerrufsbutton - Home */
.withdrawal-home-button a {
    transition: all 0.3s ease;
}
.withdrawal-home-button a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6) !important;
}

/* Footer-Link */
.withdrawal-footer-link {
    display: inline-block;
    margin: 5px 10px;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #d63384;
    font-weight: bold;
    text-decoration: none;
}
.withdrawal-footer-link:hover {
    background: #e9ecef;
    text-decoration: underline;
}

/* Formular */
.withdrawal-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.withdrawal-form .form-group {
    margin-bottom: 25px;
}

.withdrawal-form .required {
    color: red;
}

.withdrawal-confirm-btn {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    transition: all 0.3s ease;
}
.withdrawal-confirm-btn:hover {
    background: #c82333;
    border-color: #bd2130;
    transform: scale(1.02);
}
.withdrawal-confirm-btn i {
    margin-right: 10px;
    font-size: 28px;
    vertical-align: middle;
}

/* Bestätigungsseite */
.withdrawal-confirmation .alert-success {
    border: 2px solid #28a745;
    border-radius: 12px;
}
.withdrawal-confirmation .material-icons {
    color: #28a745;
}
.confirmation-details p {
    margin-bottom: 5px;
    font-size: 16px;
}

/* Konto-Link */
.withdrawal-account-link {
    display: block;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #007bff;
    text-decoration: none;
    margin: 5px 0;
    border-left: 4px solid #dc3545;
}
.withdrawal-account-link:hover {
    background: #e9ecef;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .withdrawal-home-button a {
        font-size: 18px !important;
        padding: 15px 25px !important;
    }
    .withdrawal-form .form-control-label {
        margin-bottom: 5px;
    }
}