/* style.css - Basic styles for the testing website */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
}

h1, h2 {
    color: #2c3e50;
}

.status {
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border-left: 5px solid;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.warning {
    background-color: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}