* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    background: #f5f7fb;
    color: #222;
}

header {
    background: #1f2933;
    color: #fff;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    color: #e5e7eb;
    text-decoration: none;
    margin-left: 12px;
    font-size: 14px;
}

header a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1300px;
    margin: 24px auto;
    padding: 0 16px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.card h2 {
    margin-top: 0;
}

.form-inline input[type="text"],
form input[type="text"],
form textarea,
form select,
form input[type="date"],
form input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    margin-bottom: 8px;
}

button,
input[type="submit"] {
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    background: #2563eb;
    color: #fff;
}

button.secondary {
    background: #185d96;
    padding-left:5px;
    padding-right:5px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    background: #e5e7eb;
    margin-right: 4px;
}

/* Calendar */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-name,
.calendar-cell {
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    min-height: 80px;
    font-size: 12px;
}

.calendar-day-name {
    text-align: center;
    font-weight: 600;
    background: transparent;
    box-shadow: none;
}

.calendar-cell .date-label {
    font-weight: 600;
    margin-bottom: 4px;
}

.task-pill {
    border-radius: 999px;
    padding: 3px 6px;
    margin-bottom: 3px;
    font-size: 11px;
    display: inline-block;
    background: #dbeafe;
}

.task-pill.done {
    background: #bbf7d0;
}

.task-pill.blocked {
    background: #fee2e2;
}

.yearSelect { min-width: 90px; }
.weekSelect { min-width: 90px; }
.weekdaySelect { min-width: 140px; }

h3{
    color: #a78025;
}
h4{
    color: #007b6b;
}


