.fb-post-gen {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fb-post-gen h2 {
    color: #48d6de !important;
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

input:focus, textarea:focus, select:focus {
    border-color: #48d6de;
    outline: none;
}

textarea { min-height: 80px; resize: vertical; }

.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    transform: scale(1.2);
}

button {
    background: linear-gradient(135deg, #48d6de, #3ab8c0);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
}

.loading {
    text-align: center;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 10px;
    color: #48d6de;
    font-size: 16px;
}

.select-instruction {
    background: #fff3cd;
    border: 2px dashed #48d6de;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #856404;
    border-radius: 8px;
    margin-bottom: 15px;
}

.ai-output {
    background: #f8f9fa;
    border-left: 5px solid #48d6de;
    padding: 25px;
    border-radius: 10px;
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 16px;
    min-height: 150px;
    cursor: text;
    user-select: text;
}

.footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.footer a {
    color: #48d6de;
    text-decoration: none;
}

@media (max-width: 768px) {
    .price-row { grid-template-columns: 1fr; }
    .fb-post-gen { margin: 10px; padding: 20px; }
}
