/* Base styles for Go Exercise Timer application */

/* Typography and base layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

/* Headings */
h1 {
    color: #111827;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    margin-top: 24px;
}

h2 {
    color: #111827;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    margin-top: 20px;
}

h3 {
    color: #111827;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 16px;
}

/* Text elements */
p {
    margin-bottom: 12px;
    line-height: 1.5;
}

strong {
    font-weight: bold;
    color: #111827;
}

/* Lists */
ul, ol {
    margin-bottom: 12px;
    padding-left: 20px;
}

li {
    margin-bottom: 4px;
}

/* Links */
a {
    color: #3b82f6;
    text-decoration: underline;
}

a:hover {
    color: #2563eb;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    h3 {
        font-size: 16px;
    }
}
