/* 檢舉模態框樣式 - 根據 Figma 設計 */
.report-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.report-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* 確保隱藏類的優先級 */
.report-modal-overlay.hidden {
    display: none !important;
}

.report-modal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(65, 70, 81, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.report-modal-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    z-index: 10;
}

.report-modal-content {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 
        0px 3px 3px -1.5px rgba(10, 13, 18, 0.04),
        0px 8px 8px -4px rgba(10, 13, 18, 0.03),
        0px 20px 24px -4px rgba(10, 13, 18, 0.08);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.report-modal-overlay.show .report-modal-content {
    transform: scale(1);
}

/* 模態框頭部 */
.report-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 24px 0px;
}

.report-featured-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F97066 0%, #B42318 100%);
    border: 8px solid #F97066;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0px 1px 2px 0px rgba(10, 13, 18, 0.05), 
        inset 0px -2px 0px 0px rgba(10, 13, 18, 0.05), 
        inset 0px 0px 0px 1px rgba(10, 13, 18, 0.18);
}

.report-title-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.report-modal-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: #181D27;
    margin: 0;
}

.report-modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #535862;
    margin: 0;
}

.report-close-btn {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    padding: 8px;
}

.report-close-btn:hover {
    background: #F5F5F5;
}

/* 分隔線 */
.report-header-divider {
    height: 20px;
    flex-shrink: 0;
}

/* 模態框主體 */
.report-modal-body {
    padding: 0px 10px 24px;
    /* max-height: 400px; */
    overflow-y: auto;
}

/* 檢舉選項容器 */
.report-options-container {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* 檢舉選項項目 */
.report-option-item {
    display: flex;
    align-items: stretch;
    padding: 1px 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-option-content {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.report-option-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #181D27;
}

/* 選項狀態樣式 */
.report-option-item:hover .report-option-content {
    background: #FAFAFA;
}

.report-option-item.selected .report-option-content {
    background: #FAFAFA;
}

/* 隱藏類 */
.hidden {
    display: none !important;
}

/* 響應式設計 */
@media (max-width: 576px ) {
    .report-modal-overlay {
        padding: 16px;
    }
    
    .report-modal-container {
        max-width: 90%;
    }
    
    .report-modal-header {
        padding: 20px 20px 0px;
        gap: 12px;
    }
    
    .report-featured-icon {
        width: 40px;
        height: 40px;
        border-width: 6px;
    }
    
    .report-modal-title {
        font-size: 15px;
    }
    
    .report-modal-subtitle {
        font-size: 13px;
    }
    
    .report-modal-body {
        padding: 0px 8px 20px;
    }
    
    .report-option-content {
        padding: 10px 12px;
    }
    
    .report-option-text {
        font-size: 15px;
    }
}

/* 滾動條樣式 */
.report-modal-body::-webkit-scrollbar {
    width: 6px;
}

.report-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.report-modal-body::-webkit-scrollbar-thumb {
    background: #D5D7DA;
    border-radius: 3px;
}

.report-modal-body::-webkit-scrollbar-thumb:hover {
    background: #A4A7AE;
}