/* Präsentations-Feedback Widget */

/* Button (in Hub Widget Grid) */
.aca-praesentation-feedback-button {
    background: #b1632f;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.aca-praesentation-feedback-button:hover {
    background: #9a532a;
    transform: translateY(-1px);
}

/* Modal Overlay */
.aca-pf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aca-pf-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* Modal Content */
.aca-pf-modal__content {
    position: relative;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 8px;
    overflow-y: auto;
    z-index: 1;
}

.aca-pf-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
}

.aca-pf-modal__header h2 {
    margin: 0;
    color: #1a243b;
    font-size: 22px;
}

.aca-pf-modal__close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.aca-pf-modal__close:hover {
    color: #000;
}

/* Modal Body */
.aca-pf-modal__body {
    padding: 20px 30px;
    line-height: 1.6;
}

.aca-pf-modal__body hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
}

.aca-pf-modal__body h3 {
    color: #1a243b;
    margin: 0 0 10px 0;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.aca-pf-modal__body ul,
.aca-pf-modal__body ol {
    padding-left: 20px;
    margin: 8px 0;
}

.aca-pf-modal__body li {
    margin-bottom: 4px;
}

.aca-pf-intro {
    color: #555;
    font-size: 15px;
}

/* Briefing Link */
.aca-pf-briefing-link {
    display: inline-block;
    color: #b1632f;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 8px;
}

.aca-pf-briefing-link:hover {
    color: #9a532a;
}

/* DSGVO Checkbox */
.aca-pf-checkbox-label {
    display: block;
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.aca-pf-checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}

.aca-pf-checkbox-label a {
    color: #b1632f;
}

/* Modal Footer */
.aca-pf-modal__footer {
    display: flex;
    gap: 15px;
    padding: 0 30px 25px;
}

.aca-pf-whatsapp-button {
    flex: 1;
    background: #88b441;
    color: white;
    text-align: center;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
    pointer-events: none;
    opacity: 0.5;
}

.aca-pf-whatsapp-button.active {
    pointer-events: auto;
    opacity: 1;
}

.aca-pf-whatsapp-button.active:hover {
    background: #75a036;
}

.aca-pf-cancel-button {
    background: #e8e8e8;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.aca-pf-cancel-button:hover {
    background: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .aca-pf-modal__content {
        width: 95%;
        max-height: 95vh;
    }
    
    .aca-pf-modal__header,
    .aca-pf-modal__body,
    .aca-pf-modal__footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .aca-pf-modal__footer {
        flex-direction: column;
    }
}
