/* Main Container */
.dayche-skyroom-container {
    margin: 20px 0;
    font-family: inherit;
    direction: rtl;
    text-align: right;
}

/* Badges */
.dayche-badge {
    background: #F9FAFB;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    color: #72797F;
    margin: 0 4px;
    display: inline-block;
    letter-spacing: -0.5px;
}

/* Status Box */
.dayche-status-box {
    background-color: #D1D6DC;
    border-radius: 8px;
    padding: 20px 40px;
    color: #fff;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 300px;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: -0.5px;
}

/* Button */
.dayche-skyroom-btn {
    background-color: #3a7aa8ff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dayche-skyroom-btn:hover {
    background-color: #2c668f !important;
    color: #fff !important;
}

/* Text Utilities */
.dayche-text-muted {
    color: #84848E;
}

.dayche-info-text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: -0.3px;
}

.dayche-info-lead {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.dayche-error-msg {
    color: red;
    text-align: center;
}

/* Alert Boxes */
.dayche-alert-box {
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: right;
    letter-spacing: -0.3px;
}

.dayche-alert-info {
    background-color: #e1f5fe;
    border: 1px solid #b3e5fc;
}

.dayche-alert-warning {
    background-color: #fff9c4;
    border: 1px solid #fff59d;
}

/* --- Sidebar Highlight Features --- */
/* Highlighted Item Background */
.dayche-highlight {
    background-color: #e3f2fd !important;
    /* Very Light Blue */
    position: relative !important;
    /* overflow: hidden; Removed to allow tooltips to show */
    /* Ensure padding is sufficient so text doesn't overlap badges on the left */
    padding-left: 100px !important;
}

/* Group Badge - Left side, Full Height */
.dayche-group-badge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    /* Spacing from left edge */
    width: 45px;
    height: 45px;
    /* Square-ish */
    background-color: #1a7fb8;
    /* Primary Blue */
    color: #fff;
    display: flex;
    flex-direction: column;
    /* Stack items */
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
    /* Rounded corners */
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dayche-grp-label {
    font-size: 10px;
    font-weight: normal;
    opacity: 0.9;
}

.dayche-grp-num {
    font-size: 16px;
    font-weight: bold;
}

/* Time Badge - Vertically Centered, next to Group Badge */
.dayche-time-badge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 65px;
    /* 45px width + 10px left + 10px gap */
    background-color: #e7a516;
    /* Dark Blue Grey */
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
    z-index: 10;
}

.dayche-time-badge.dayche-active {
    background-color: #3fa376 !important;
    /* Green for active */
}