/* Prompt Scroll Frontend Styles */

.prompt-scroll-wrapper {
    max-width: 100%;
}

/* 프롬프트만 있는 단일 레이아웃 */
.prompt-scroll-single {
    max-height: var(--ps-height, 400px) !important;
    overflow-y: auto !important;
    padding-right: 10px !important;
}

.prompt-scroll-single::-webkit-scrollbar {
    width: 6px;
}

.prompt-scroll-single::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.prompt-scroll-single::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.prompt-scroll-single::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.prompt-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prompt-scroll-box {
    background: var(--ps-box-bg, #f5f5f5) !important;
    border-radius: 8px !important;
    padding: 20px !important;
}

.prompt-scroll-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.prompt-scroll-box-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: var(--ps-title-font-size, 18px) !important;
    font-weight: 700 !important;
    color: var(--ps-title-color, #c4a000) !important;
}

.prompt-scroll-copy-btn {
    background: var(--ps-btn-color, #4CAF50) !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.prompt-scroll-copy-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.prompt-scroll-copy-btn.copied {
    background: var(--ps-btn-done-color, #2196F3) !important;
}

.prompt-scroll-box-content {
    font-size: var(--ps-content-font-size, 15px) !important;
    line-height: 1.2 !important;
    color: #000 !important;
    white-space: pre-wrap !important;
    word-break: break-word !important;
    font-family: inherit !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* 반응형 */
@media (max-width: 768px) {
    .prompt-scroll-single {
        max-height: 500px;
    }
}
