/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px;
    background-color: #f8f9fa;
    color: #333;
    font-size: 16px; /* ✅ base text size larger */
}

h1, h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    overflow-x: auto;
    display: block;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
    font-size: 1em;
}

/* Buttons & Links */
a, .btn, input[type=submit] {
    display: inline-block;
    margin: 10px 0;
    padding: 12px 16px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1.1em; /* ✅ bigger buttons */
    text-align: center;
}

a:hover, .btn:hover, input[type=submit]:hover {
    background-color: #0056b3;
}

/* Input fields & Selects */
label {
    display: block;
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 1.05em;
}

input, select {
    margin-bottom: 15px;
    padding: 12px;
    width: 100%; /* ✅ full width */
    font-size: 1em; /* ✅ larger text for readability */
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* ✅ Mobile Specific */
@media (max-width: 768px) {
    body {
        font-size: 18px; /* increase text on mobile */
    }
    h1 {
        font-size: 1.6em;
    }
    h2 {
        font-size: 1.3em;
    }
    label, input, select, table, th, td {
        font-size: 1.1em;
    }
    a, .btn, input[type=submit] {
        width: 100%;  /* stack buttons */
        display: block;
    }
}
