/* Dashboard control */
.fp-video-vis-control {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}
.fp-video-vis-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}
.fp-video-vis-select {
    min-width: 260px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 13px;
}
.fp-video-vis-help {
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}
.fp-video-vis-status {
    margin-top: 4px;
    font-size: 12px;
    color: #059669;
}

/* Listing icons */
.fp-video-icon {
    margin-left: 8px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fp-video-icon::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 2px;
}
.fp-video-icon--green {
    background: #10b981;
}
.fp-video-icon--orange {
    background: #f97316;
}

/* Modal */
.fp-video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}
.fp-video-modal-open {
    display: block;
}
.fp-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
}
.fp-video-modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.5);
}
.fp-video-modal-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.fp-video-modal-body {
    margin-top: 16px;
}
.fp-video-modal-message {
    margin: 0;
    font-size: 14px;
    color: #111827;
}

/* Detail page block */
.fp-video-public-block {
    margin: 16px 0 8px 0;
    padding: 12px 0;
}
.fp-video-public-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}
