/* SQL Editor Component Styles */
.sql-editor-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.sql-editor-toolbar {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.sql-editor-wrapper {
    flex-grow: 1;
    width: 100%;
    min-height: 400px;
    position: relative;
}

.sql-editor-monaco {
    width: 100%;
    height: 100%;
}

.sql-editor-footer {
    padding: 8px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sql-editor-status {
    font-size: 12px;
    color: #666;
}

.sql-editor-actions button {
    margin-left: 8px;
}

/* Hint suggestion styles */
.hint-keyword {
    color: #0000ff;
    font-weight: bold;
}

.hint-method {
    color: #008800;
    font-weight: bold;
}

.hint-connection {
    color: #880000;
}

.hint-endpoint {
    color: #000088;
}

/* Status indicator */
.status-success {
    color: #28a745;
}

.status-error {
    color: #dc3545;
}

.status-warning {
    color: #ffc107;
}

.status-info {
    color: #17a2b8;
}

/* SQL Editor Tab specific styles */
#v-pills-sqleditor {
    height: 600px;
    display: flex;
    flex-direction: column;
}