@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #6366f1;
    --secondary-color: #a855f7;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --text-color: #1f2937;
}



.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2rem;
    width: 100%;
    margin:30px 0px;
    animation: fadeIn 0.5s ease-out;
}

.app-title {
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-generate {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    color: white;
}

.output-area {
    background: #f9fafb;
    border-radius: 15px;
    padding: 1.5rem;
    min-height: 200px;
    max-height: 500px;
    overflow-y: auto;
    border: 2px solid #e5e7eb;
    margin-top: 2rem;
    position: relative;
    white-space: pre-wrap;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    justify-content: flex-end;
}

.btn-action {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-copy {
    background-color: #e0e7ff;
    color: var(--primary-color);
    border: none;
}

.btn-copy:hover {
    background-color: #c7d2fe;
}

.btn-download {
    background-color: #f3e8ff;
    color: var(--secondary-color);
    border: none;
}

.btn-download:hover {
    background-color: #e9d5ff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
.output-area::-webkit-scrollbar {
    width: 8px;
}
.output-area::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.output-area::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 4px;
}
.output-area::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
