/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f0f2f5; 
    color: #333;
    padding: 20px;
    text-align: center; 
    margin: 0;
}

h1, h2, h3 {
    color: #2c3e50; 
    margin-bottom: 20px;
}

.btn {
    display: block;
    width: 300px;            
    padding: 15px 20px;
    margin: 10px auto;           
    background-color: #007bff; 
    color: white;
    text-decoration: none;  
    border-radius: 8px;      
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: #0056b3; 
    transform: translateY(-2px);
}

.box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 20px auto;      
    text-align: left;        
}

ul, ol {
    padding-left: 20px;
    list-style-position: inside;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.sql-desc {
    font-size: 0.9em;
    color: #777;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
}