/* Publish Page Specific Styles */

.publish-content {
    padding: 20px 16px;
    background-color: #f9fbf9; /* Light greenish background */
    min-height: calc(100% - 120px);
}

.publish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 16px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.publish-header .close-btn {
    font-size: 20px;
    color: #333;
}

.publish-header .header-title {
    font-size: 18px;
    font-weight: 600;
}

.publish-header .placeholder {
    width: 20px;
}

.selection-title {
    margin-bottom: 24px;
}

.selection-title h1 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.selection-title p {
    font-size: 14px;
    color: #999;
}

.publish-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.option-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.option-card:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #fff;
    font-size: 20px;
}

.bg-green { background: #2ecc71; }
.bg-orange { background: #f39c12; }
.bg-blue { background: #3498db; }
.bg-purple { background: #9b59b6; }
.bg-red { background: #e74c3c; }

.option-info {
    flex: 1;
}

.option-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.option-info p {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

.option-card .arrow {
    color: #ccc;
    font-size: 14px;
}

.publish-notice {
    background: #f0f9f4;
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #e0f2e9;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    color: #27ae60;
    font-size: 13px;
    font-weight: 600;
}

.publish-notice p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Specific styling for the active state in bottom nav */
.bottom-nav .nav-item.center.active .plus-btn {
    background: #27ae60;
    color: #fff;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.bottom-nav .nav-item.center.active span {
    color: #27ae60;
    font-weight: 600;
}
