/* AI Caption Generator CSS */
.generator-panel {
    background: var(--bg2, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .input-grid {
        grid-template-columns: 1fr;
    }
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--muted, #a0aab2);
    font-weight: 500;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--accent, #1D7C6E);
    box-shadow: 0 0 0 3px rgba(29, 124, 110, 0.2);
}

.generate-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent, #1D7C6E);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.generate-btn:hover {
    background: var(--accent-hover, #145F55);
    transform: translateY(-2px);
}

.dc.fi {
    padding: 20px;
}

.copy-small-btn:hover {
    background: rgba(255,255,255,0.2) !important;
}

.copy-small-btn.copied {
    background: #55efc4 !important;
    color: #000 !important;
}
