.prompt-side-panel {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 280px;
	max-width: 800px;
    margin: 30px auto;
}

.prompt-question {
    font-size: 16px;
    color: #004a80;
    font-weight: 600;
    margin-bottom: 8px;
}

.prompt-buttons {
    display: flex;
    gap: 8px;
}

.prompt-btn {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

    .prompt-btn:hover,
    .prompt-btn.prompt-selected {
        background: #e8eaed;
        border-color: #004a80;
    }

    .prompt-btn.prompt-selected {
        font-weight: 600;
    }

    .prompt-btn i {
        display: inline-block;
        margin-right: 8px;
        color: #004a80;
        font-size: 22px;
        vertical-align: middle;
    }

.prompt-compact-bar {
    margin: 30px 20%;
    background: #f8f9fa;
    border-top: 3px solid #004a80;
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
}

.prompt-compact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.prompt-question-compact {
    color: #004a80;
    font-weight: 600;
    font-size: 15px;
}

.prompt-select {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 15px;
    min-width: 150px;
}

.prompt-inline-chip {
    background: #fff;
    border-left: 4px solid #004a80;
    padding: 12px 20px;
    margin: 15px 20px;
    border-radius: 0 4px 4px 0;
}

    .prompt-inline-chip .prompt-question {
        color: #333;
        font-size: 13px;
        font-weight: 500;
        padding-right: 16px;
    }

.chip-container {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.frequency-chip,
.prompt-chip {
    background: #f1f3f4;
    border: 1px solid #dadce0;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

    .frequency-chip:hover,
    .prompt-chip:hover {
        background: #e8eaed;
        border-color: #004a80;
    }

.prompt-responded-hidden {
    opacity: 0.3;
    cursor: not-allowed !important;
    pointer-events: none;
}

.prompt-btn:disabled,
.prompt-btn.prompt-responded-hidden {
    cursor: not-allowed !important;
}

    .prompt-btn:disabled:hover,
    .prompt-btn.prompt-responded-hidden:hover {
        background: #f8f9fa !important;
        border-color: #ddd !important;
    }

.prompt-responded-message {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 8px 8px 6px 8px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.prompt-redo {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

    .prompt-redo:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .prompt-side-panel {
        margin: 20px auto;
        min-width: auto;
    }

    .prompt-compact-bar {
        margin: 20px auto;
    }

    .prompt-compact-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .prompt-buttons {
        flex-direction: column;
    }

    .prompt-btn {
        width: 100%;
    }
}
