.sidebar {
    height: 100% !important;
}

.att-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 11px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity .15s;
}

.att-btn:hover {
    opacity: .85;
}

.att-btn-checkin {
    background: #fff;
    color: #b31b1b;
}

.att-btn-checkout {
    background: #b31b1b;
    color: #fff;
}

.att-btn-break {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.att-btn-resume {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.att-btn-done {
    background: rgb(255 255 255 / 31%);
    color: rgb(255 255 255 / 84%);
    cursor: default;
}

.att-time-badge {
    font-size: 13px;
    color: #fff;
    margin-left: 4px;
}

/* Bell notification */
.bell-btn {
    position: relative;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all .15s;
    padding: 0;
}

.bell-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.bell-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #b31b1b;
}

.notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: #fff;
    border: 1px solid #e9e8f5;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    z-index: 9999;
    overflow: hidden;
    display: none;
}

.notif-dropdown.show {
    display: block;
}

.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 8px;
    border-bottom: 1px solid #f3f4f6;
    font-weight: 600;
    font-size: .85rem;
    color: #111;
}

.notif-item {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f9f9fb;
    transition: background .12s;
    font-size: .82rem;
}

.notif-item:hover {
    background: #fafafa;
}

.notif-item.unread {
    background: #fafbff;
}

.notif-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.notif-icon.bg-primary-soft {
    background: #ede9fe;
    color: #6d28d9;
}

.notif-icon.bg-warning-soft {
    background: #fef9c3;
    color: #a16207;
}

.notif-icon.bg-danger-soft {
    background: #fee2e2;
    color: #ef4444;
}

.notif-title {
    font-size: .8rem;
    font-weight: 500;
    color: #111;
    line-height: 1.3;
}

.notif-meta {
    font-size: .7rem;
    color: #9ca3af;
    margin-top: 2px;
}

.notif-unread-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6d28d9;
    flex-shrink: 0;
    margin-top: 4px;
}

.notif-footer {
    padding: 9px 14px;
    text-align: center;
    font-size: .78rem;
    color: #6d28d9;
    font-weight: 500;
    border-top: 1px solid #f3f4f6;
}

.notif-footer a {
    text-decoration: none;
    color: inherit;
}

.notif-footer a:hover {
    text-decoration: underline;
}
