/* Centriranje dugmadi u prvom redu */
.main-btn-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 2.2rem;
    margin-top: 0.5rem;
}
/* Glavna dugmad za navigaciju i akcije */
.main-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    font-family: inherit;
    font-weight: 500;
    display: inline-block;
}
.main-btn:hover {
    background: #1d4ed8;
}
/* Custom overrides for modern look */
body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #f8fafc;
    color: #222;
    margin: 0;
    padding: 0;
}
.calendar-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.calendar-controls form {
    display: inline;
}
.calendar-controls button {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.calendar-controls button:hover {
    background: #1d4ed8;
}
.calendar-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    overflow: hidden;
}
.calendar-table th, .calendar-table td {
    border: 1px solid #bfc9d1;
    padding: 10px 0 8px 0;
    text-align: center;
}
.calendar-table th {
    background: #f1f5f9;
    font-weight: 600;
    font-size: 1.08em;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
}
.calendar-table .date-row td {
    font-size: 0.98em;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 0;
    padding-bottom: 6px;
}
.calendar-table tr {
    line-height: 1.2;
}
.calendar-table td {
    height: 36px;
    font-size: 1em;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}
.calendar-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 700px) {
    .calendar-table th, .calendar-table td {
        font-size: 0.92em;
        padding: 6px 0;
    }
    .calendar-controls button {
        font-size: 0.95em;
        padding: 6px 10px;
    }
}
