/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.headers {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
    color: white;
    border-radius: 12px !important;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(251, 14, 118, 0.3);
}

h1 {
    font-size: 2.5rem !important;
    font-weight: 700;
    margin-bottom: 10px;
	color:white !important;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

section {
    background: #fff !important;
    border-radius: 12px !important;
    padding: 25px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee !important;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    font-size: 1.3rem !important;
    color: #333;
    font-weight: 600;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none !important;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
    color: white !important;
    width: 100%;
    padding: 15px !important;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 14, 118, 0.4);
}

.btn-secondary {
    background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
    color: white !important;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 14, 118, 0.4);
}

.btn-outline {
    background: transparent !important;
    color: #FB0E76 !important;
    border: 2px solid #FB0E76 !important;
}

.btn-outline:hover {
    background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
    color: white !important;
    border-color: transparent;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.file-label {
    display: inline-block;
    cursor: pointer;
}

textarea {
    width: 100%;
    min-height: 200px;
    padding: 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.3s ease;
    background: #fafafa !important;
}

textarea:focus {
    outline: none;
    border-color: #FB0E76;
}

textarea::placeholder {
    color: #999;
}

#sqlOutput {
    background: #f5f5f5 !important;
}

.options-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-group label {
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
}

.option-group input[type="text"],
.option-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fafafa !important;
}

.option-group input[type="text"]:focus,
.option-group select:focus {
    outline: none !important;
    border-color: #FB0E76 !important;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 5px !important;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem !important;
    color: #444 !important;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FB0E76;
    cursor: pointer;
}

.query-type-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.query-type-btn {
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white !important;
    color: #666 !important;
}

.query-type-btn:hover {
    border-color: #FB0E76;
    color: #FB0E76;
}

.query-type-btn.active {
    background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
    color: white !important;
    border-color: transparent !important;
}

footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 0px;
    }

    header {
        padding: 25px 15px;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .button-group {
        width: 100%;
    }

    .button-group .btn {
        flex: 1;
        text-align: center;
    }

    textarea {
        min-height: 150px;
    }

    .options-section {
        grid-template-columns: 1fr;
    }

    .query-type-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    section {
        padding: 15px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 12px;
    }
}