/**
 * Custom Style untuk FCM Manager - Aplikasi Terbang
 */

/* Smartphone Preview Mockup */
.phone-mockup {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: #0f172a;
    border: 10px solid #1e293b;
    border-radius: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 18.5;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    width: 90px;
    height: 18px;
    background: #1e293b;
    margin: 0 auto;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: relative;
    z-index: 20;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 16px;
    font-size: 10px;
    color: #94a3b8;
    background: #0f172a;
    z-index: 10;
}

.phone-screen {
    flex: 1;
    background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
    padding: 12px 10px;
    position: relative;
    overflow-y: auto;
}

.android-notif-card {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notif-big-image {
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 8px;
    display: none;
}

/* Custom scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}
