/* Recommendation Page Styles */

.recommend-banner {
    padding: 16px;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
}

.banner-inner {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.08);
}

.banner-text h2 {
    font-size: 18px;
    color: #e11d48;
    margin-bottom: 6px;
    font-weight: 700;
}

.banner-text p {
    font-size: 12px;
    color: #fb7185;
}

.banner-img {
    font-size: 40px;
    color: #f43f5e;
    opacity: 0.8;
}

.input-section {
    padding: 16px;
    background: #fff;
}

.input-section.border-bottom {
    border-bottom: 1px solid #f5f5f5;
}

.section-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

#share-title {
    width: 100%;
    border: none;
    font-size: 16px;
    color: #333;
    outline: none;
    padding: 0;
}

#share-title::placeholder {
    color: #bbb;
}

#share-desc {
    width: 100%;
    min-height: 100px;
    border: none;
    resize: none;
    font-size: 15px;
    color: #333;
    outline: none;
    padding: 0;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #bbb;
    margin-top: 5px;
}

.upload-section {
    padding: 20px 16px;
    background: #fff;
    border-top: 8px solid #f9f9f9;
}

.upload-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.upload-section .label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.count-hint {
    font-size: 12px;
    color: #bbb;
}

.upload-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upload-btn {
    width: 90px;
    height: 90px;
    background: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #999;
    font-size: 11px;
}

.upload-btn i {
    font-size: 24px;
}

.options-list {
    background: #fff;
}

.options-list.border-top {
    border-top: 8px solid #f9f9f9;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}

.option-item .label {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.item-label-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-label-group .sub-label {
    font-size: 12px;
    color: #999;
}

.item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.value-text.green {
    color: #27ae60;
    font-size: 14px;
}

.option-item .arrow {
    font-size: 12px;
    color: #ccc;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.post-header .back-btn { font-size: 18px; color: #333; }
.post-header .header-title { font-size: 17px; font-weight: 600; }
.publish-submit-btn {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
}
