
/* ============================================================
   calendar.css – LJH Webb Kalender (Version 4.2)
   Stabil, ren och kompatibel med calendar.php V6.1
   ============================================================ */


/* ===========================
   🧱 Tabellstruktur
   =========================== */

/* Hela kalendern */
table.calendar {
    width: 100%;
    table-layout: fixed; /* Alla kolumner lika breda */
    border-collapse: collapse;
    background: #ffffff;
}

/* Tabellhuvud (veckodagar + veckonummer-rubrik) */
.calendar thead th {
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 6px 0;
    font-weight: 600;
    text-align: center;
}


/* =======================================
   📅 Kalenderceller (daterutor)
   ======================================= */

.calendar-day {
    width: 130px;
    height: 120px;

    border: 1px solid #ccc !important;
    background: #f8f9fa !important;

    position: relative;
    vertical-align: top;

    overflow: hidden;
    padding: 0;

    cursor: pointer;
    transition: background 0.2s ease;
    box-sizing: border-box;
}

.calendar-day:hover {
    background: #eaf4ff !important;
    border-color: #66b3ff !important;
}

.calendar-day.today {
    background-color: #ffe69c !important;
    border: 2px solid #ffc107 !important;
}


/* Tomma datumrutor (före och efter månaden) */
.calendar-day.empty {
    background: #fafafa !important;
    cursor: default;
}


/* ===========================
   📦 Intern container i cellen
   =========================== */
.day-box {
    position: relative;
    width: 100%;
    height: 100%;
}


/* ===================================
   🕒 Arbetstid (överst i cellen)
   =================================== */
.workshift-time {
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    text-align: center;

    font-size: 0.75rem;
    color: #0d6efd;
    font-weight: 600;
}


/* ========================================
   🔢 Datum – centrerat i varje ruta
   ======================================== */
.date-number {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;

    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
}


/* =======================================
   🔵 Vänster-markeringar
   (arbetsrelaterade notiser)
   ======================================= */
.marker-left {
    position: absolute;
    bottom: 6px;
    left: 6px;

    font-size: 0.65rem;
    line-height: 1.1;
    text-align: left;
}


/* =======================================
   🟣 Höger-markeringar
   (personliga notiser)
   ======================================= */
.marker-right {
    position: absolute;
    bottom: 6px;
    right: 6px;

    font-size: 0.65rem;
    line-height: 1.1;
    text-align: right;
}


/* =======================================
   🏷️ Taggar (markörer inne i rutorna)
   ======================================= */
.marker-tag {
    display: inline-block;
    background: #e6f0ff;

    padding: 1px 3px;
    margin-bottom: 2px;

    border-radius: 4px;
    max-width: 50px; /* ~6 bokstäver */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}


/* ===========================
   📆 Veckonummer
   =========================== */
.weeknum {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    background: #f7f7f7;
    border: 1px solid #ccc;
}

/* Admin- CTA-button */
.admin-btn {
    padding: 6px 12px;
    background: #0d6efd;
    color: white;
    border-radius: 4px;
    margin-right: 8px;
    text-decoration: none;
    font-size: 0.9rem;
}

.admin-btn:hover {
    background:#0b5ed7;
}

/* ============================================================
   ADMINVERKTYG – Kalenderkontroller (syns endast i admin-läge)
   ============================================================ */

.calendar-admin-tools {
    margin-bottom: 15px;
    padding: 10px;
    background: #eef5ff;
    border: 1px solid #c9dbff;
    border-radius: 6px;
}

.admin-btn {
    display: inline-block;
    margin-right: 10px;
    padding: 6px 12px;
    background: #0d6efd;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.admin-btn:hover {
    background: #0b5ed7;
}

/* ============================
   ADMINPANEL I KALENDERN
============================ */
.calendar-admin-panel {
    margin-top: 30px;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.calendar-admin-panel h3 {
    margin-top: 0;
}

.admin-actions {
    margin-bottom: 20px;
}

.admin-btn {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 14px;
    background: #005bbb;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.admin-btn:hover {
    background: #003f7f;
}

/* undersektioner */
.admin-section {
    margin-top: 20px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}



