/* === SAAS / DASHBOARD PROJECT STYLES === */

/* GRUP & DASHBOARD KARTLARI */
.item-card {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #cff4fc;
}

.item-card .card-body { padding: 1.5rem; }
.item-card i { transition: 0.3s; }
.item-card:hover i { transform: scale(1.1); opacity: 1 !important; }

/* DURUM RENKLERİ */
.status-active { background-color: #d1e7dd; color: #0f5132; }
.status-passive { background-color: #f8f9fa; color: #6c757d; }
.status-maintenance { background-color: #fff3cd; color: #664d03; }

/* TABLE STYLES (Settings vb.) */
.table-hover tbody tr:hover { background-color: #f8faff; }
.table thead th { font-weight: 600; font-size: 0.8rem; color: #64748b; background: #f1f5f9; border-bottom: 0; }

/* TOAST NOTIFICATION */
.toast-container { z-index: 10000; }
.toast { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* ROOM CARD V2 (SCREENSHOT STYLE) */
.room-card-v2 {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 16px;
    background: #fff;
}
.room-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}
.room-card-v2 .badge {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px !important;
}
.room-card-v2 .btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
    border-radius: 8px;
    font-size: 0.9rem;
}
.room-card-v2 .btn-primary:hover {
    background-color: #2563eb;
}

/* === STYLE.CSS EKLEMELER === */

/* MİSAFİR LİSTESİ (+X Badge) */
.guest-list-item { font-size: 0.85rem; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.more-guests-badge { width: 24px; height: 24px; background: #e2e8f0; color: #475569; border-radius: 50%; font-size: 10px; font-weight: bold; display: inline-flex; align-items: center; justify-content: center; margin-left: 5px; }

/* CHECK-OUT UYARI ANİMASYONU (ÇAN) */
@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(30deg); }
    30% { transform: rotate(-28deg); }
    50% { transform: rotate(34deg); }
    70% { transform: rotate(-32deg); }
    90% { transform: rotate(30deg); }
    100% { transform: rotate(0); }
}
.bell-alert { color: #dc3545; animation: ring 4s .7s ease-in-out infinite; font-size: 1.2rem; display: inline-block; }

/* YENİ TAKVİM DÜZENİ (SOL TAKVİM - SAĞ DETAY) */
.calendar-split-container { display: flex; flex-wrap: wrap; height: 400px; }
.cal-left-panel { flex: 0 0 60%; border-right: 1px solid #eee; padding-right: 1rem; display: flex; flex-direction: column; }
.cal-right-panel { flex: 0 0 40%; padding-left: 1rem; overflow-y: auto; background: #f8f9fa; }
.cal-day { height: 40px; line-height: 40px; cursor: pointer; border-radius: 8px; text-align: center; margin: 2px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
.cal-day:hover { background-color: #e9ecef; }
.cal-day.selected-day { background-color: #0d6efd !important; color: #fff !important; box-shadow: 0 4px 6px rgba(13, 110, 253, 0.3); }
.cal-day.occupied { position: relative; }
.cal-day.occupied::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background-color: #dc3545; border-radius: 50%; }

/* HARCAMA TABLOSU */
.extra-row { transition: background 0.2s; }
.extra-row:hover { background: #f8f9fa; }
.item-card { cursor: pointer; transition: transform 0.2s; }
.item-card:hover { transform: translateY(-2px); }