/* Gemini Watermark Remover Styles */

.upload-state {
    width: 100%;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border-color);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.upload-state:hover {
    border-color: var(--primary-blue);
    background: #eff6ff;
}

.upload-state.dragover {
    border-color: var(--primary-blue);
    background: #eff6ff;
    transform: scale(1.01);
}

.upload-content {
    text-align: center;
    pointer-events: none;
}

.upload-content i {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--primary-blue);
    opacity: 0.8;
}

.upload-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.upload-content p {
    color: var(--text-light);
    font-size: 1rem;
}

.result-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
    animation: fadeInUp 0.4s ease;
}

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

.image-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.image-card-header {
    background: #f8fafc;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-card-header h4 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-badge {
    padding: 4px 10px;
    background: #eab308;
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.processing {
    background: #3b82f6;
}

.status-badge.success {
    background: #22c55e;
}

.status-badge.error {
    background: #ef4444;
}

.image-comparison {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.image-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #fafafa;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.image-row:last-child {
    border-bottom: none;
    background: #fff;
}

.image-row .row-label {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.image-preview {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-actions {
    padding: 15px 20px;
    background: #f8fafc;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.action-bar-floating {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* FAQ Details Styles */
details summary i.fa-chevron-right {
    transition: transform 0.3s;
    margin-right: 8px;
    font-size: 12px;
}

details[open] summary i.fa-chevron-right {
    transform: rotate(90deg);
}

details summary:hover {
    color: var(--primary-blue);
}

/* Tip Card Styles */
.tip-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-blue);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.tip-card h4 {
    margin: 0 0 10px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
}

.tip-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.tip-card.warning {
    background: #fffbeb;
    border-color: #fcd34d;
}

.tip-card.warning:hover {
    border-color: #f59e0b;
}

.tip-card.warning i {
    color: #f59e0b;
}

/* Responsive */
@media (max-width: 768px) {
    .upload-content i {
        font-size: 48px;
    }
    .upload-content h3 {
        font-size: 1.2rem;
    }
    .image-preview {
        max-height: 350px;
    }
}
