/* 广告点评样式 */

/* Photo Review Description */
.photo-review-description {
    font-size: 13px;
    color: #666;
    margin: 10px 0 15px 0;
    line-height: 1.4;
}

.review-buttons-row {
    display: flex;
    gap: 10px;
    padding: 15px 0;
}

.review-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    border: 2px solid;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-btn:active:not(:disabled) {
    transform: translateY(0);
}

.review-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.review-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    flex-shrink: 0;
}

.real-btn {
    color: #10b981;
    border-color: #10b981;
}

.real-btn:hover:not(:disabled) {
    background: #ecfdf5;
    border-color: #059669;
    color: #059669;
}

.fake-btn {
    color: #ef4444;
    border-color: #ef4444;
}

.fake-btn:hover:not(:disabled) {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
}

/* Report User Link */
.report-user-link {
    text-align: center;
    padding: 15px 0 5px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

.report-description {
    font-size: 12px;
    color: #888;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.report-user-link a {
    font-size: 13px;
    color: #dc3545;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.report-user-link a:hover {
    color: #c82333;
    text-decoration: underline;
}

.report-user-link i {
    margin-right: 5px;
}

/* Modal Overlay */
.report-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Dialog Box - listeo style */
.zoom-anim-dialog {
    background: #fff;
    border-radius: 4px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
    overflow: hidden; /* 防止内容溢出 */
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Dialog Header */
.small-dialog-header {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 25px;
    border-radius: 4px 4px 0 0;
    width: 100%; /* 确保宽度一致 */
    box-sizing: border-box; /* 包含 padding 在宽度内 */
}

.small-dialog-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.article-review-modal .small-dialog-header {
    left: 0;
    margin-bottom: 0;
}
/* Message Reply / Form Container */
.message-reply {
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
}

.message-reply .form-group {
    margin-bottom: 20px;
}

.message-reply label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 13px;
}

.message-reply textarea,
.message-reply input[type="text"],
.message-reply input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.message-reply textarea:focus,
.message-reply input:focus {
    outline: none;
    border-color: #66afe9;
}

.message-reply textarea.error,
.message-reply input.error {
    border-color: #dc3545;
}

.message-reply textarea {
    resize: vertical;
    min-height: 100px;
}

.message-reply .help-text {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    font-style: italic;
}

.message-reply .error-text {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* Radio Group */
.radio-group {
    margin-bottom: 15px;
}

.radio-inline {
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    color: #333;
}

.radio-inline input[type="radio"] {
    margin-right: 6px;
    cursor: pointer;
}

/* Contact Details Section */
.contact-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button */
.message-reply .button {
    width: 100%;
    padding: 12px 20px;
    background: #66676b;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.message-reply .button:hover {
    background: #55565a;
}

/* Close Button */
.report-modal-overlay .modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 18px;
    line-height: 26px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    text-align: center;
    z-index: 10;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .photo-review-description {
        font-size: 12px;
        margin: 8px 0 12px 0;
    }

    .review-buttons-row {
        gap: 8px;
    }

    .review-btn {
        padding: 12px 10px;
        font-size: 12px;
    }

    .review-btn svg {
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }

    .zoom-anim-dialog {
        margin: 10px;
        max-width: 100%;
    }

    .small-dialog-header {
        padding: 15px;
    }

    .small-dialog-header h3 {
        font-size: 16px;
    }

    .message-reply {
        padding: 15px;
    }

    .report-description {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .radio-inline {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .report-modal-overlay .modal-close-btn {
        font-size: 16px;
        width: 25px;
        height: 25px;
        line-height: 23px;
    }
    .breadcrumbs-nav {
        display: flex;
        justify-content: end;
        margin-bottom: 10px;
        margin-top: 20px;
    }
}

.adverse-breadcrumbs {
    padding: 15px 0;
    margin-bottom: 20px;
}

.breadcrumbs-nav {
    font-size: 14px;
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}

.breadcrumbs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #f91942;
    text-decoration: none;
}

.breadcrumb-item span {
    color: #495057;
    font-weight: 500;
}

.breadcrumb-item i {
    margin: 0 8px;
    color: #6c757d;
    font-size: 12px;
}

@media (max-width: 768px) {
    .adverse-breadcrumbs {
        padding: 10px 0;
        margin-bottom: 15px;
    }

    .breadcrumbs-nav {
        font-size: 13px;
    }

    .breadcrumb-item i {
        margin: 0 5px;
    }

    .breadcrumb-item span,
    .breadcrumb-item a {
        font-size: 13px;
    }
}
