/* Kerjakode Floating Notification - Clean Glassmorphism */
.kk-notif-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 252, 252, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 14px;
    border: 1px solid rgba(13, 148, 137, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(13, 148, 137, 0.05), inset 0 1px 0 rgba(255, 255, 255, 1);
    min-width: 280px;
    max-width: 340px;
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999999 !important;
    overflow: hidden;
}
.kk-notif-box.kk-notif-show { opacity: 1 !important; transform: translateX(0) !important; }
.kk-notif-hidden { display: none; }
.kk-notif-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}
.kk-notif-text { flex: 1; z-index: 1; }
.kk-notif-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1F2937;
    margin-bottom: 3px;
}
.kk-notif-time {
    font-size: 11.5px;
    color: rgba(31, 41, 59, 0.6);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}
.kk-notif-time::before {
    content: '•';
    color: #14B8A6;
    font-size: 12px;
}
.kk-notif-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}
/* Responsive Design - Mobile Special Layout */
@media (max-width: 768px) {
    .kk-notif-box {
        bottom: 16px !important;
        left: 12px !important;
        right: auto !important;
        transform: translateX(-60px) !important;
        min-width: auto !important;
        max-width: calc(100vw - 80px) !important;
        width: auto !important;
        padding: 11px 13px !important;
        gap: 10px !important;
        border-radius: 14px !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(13, 148, 137, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
        border: 1.5px solid rgba(13, 148, 137, 0.2) !important;
    }
    .kk-notif-box.kk-notif-show {
        transform: translateX(0) !important;
    }
    .kk-notif-avatar {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
        align-self: flex-start !important;
    }
    .kk-notif-title {
        font-size: 12px !important;
        line-height: 1.4 !important;
        font-weight: 700 !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    .kk-notif-time {
        font-size: 10px !important;
        font-weight: 600 !important;
    }
    .kk-notif-time::before {
        font-size: 12px !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 480px) {
    .kk-notif-box {
        left: 10px !important;
        max-width: calc(100vw - 70px) !important;
        padding: 10px 12px !important;
        gap: 9px !important;
        border-radius: 13px !important;
    }
    .kk-notif-avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
    }
    .kk-notif-title {
        font-size: 11.5px !important;
    }
    .kk-notif-time {
        font-size: 9.5px !important;
    }
}

@media (max-width: 360px) {
    .kk-notif-box {
        left: 8px !important;
        max-width: calc(100vw - 60px) !important;
        padding: 9px 11px !important;
        gap: 8px !important;
    }
    .kk-notif-avatar {
        width: 34px !important;
        height: 34px !important;
        font-size: 12px !important;
    }
    .kk-notif-title {
        font-size: 11px !important;
    }
    .kk-notif-time {
        font-size: 9px !important;
    }
}
