/* base.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 16px;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

input, select, textarea, button {
    font-size: 1rem;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    padding: 8px;
    border: 1px solid #ccc;
    text-align: left;
}

.slot {
    display: inline-block;
    background: #eef;
    margin: 6px 4px;
    padding: 10px 12px;
    border-radius: 6px;
    text-align: center;
}

.slot a {
    text-decoration: none;
    color: #007bff;
}

@media (min-width: 768px) {
    body {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
}

/* Fixed-size chart container for admin dashboard */
.chart-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
}
.chart-wrap > canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}
