/*BASIC STYLING BY GEMINI 3 PRO*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #00838f;
    margin-bottom: 30px;
}

.header-actions {
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.primary-btn {
    background-color: #00acc1;
    color: white;
}

.primary-btn:hover {
    background-color: #00838f;
}

.sql-input-section {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-family: monospace;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

textarea:focus {
    outline: none;
    border-color: #00acc1;
    box-shadow: 0 0 5px rgba(0, 172, 193, 0.3);
}

.submit-btn {
    background-color: #4caf50;
    color: white;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #388e3c;
}

#response-area {
    margin-top: 20px;
    padding: 15px;
    background-color: #fce4ec;
    border: 1px solid #f8bbd0;
    border-radius: 4px;
    display: none; /* Initially hide until content is populated */
}
