/* TAPE Notification Badge Styling */

/* Mail indicator badge */
.mail-indicator {
    background-color: #FFE000 !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
    font-weight: bold;
    font-size: 0.75rem;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

/* Pulse animation for notification badges */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
}

/* TAPE-styled notification badges */
.tape-notification-badge {
    background-color: #FFE000 !important;
    color: #000000 !important;
    border: 2px solid #ffffff;
    font-weight: bold;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hover effect for notification badges */
.tape-notification-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

/* Mail icon container */
.mail-icon-container {
    position: relative;
    display: inline-block;
}

/* Mail icon styling */
.mail-icon {
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.2s ease;
}

.mail-icon:hover {
    color: #FFE000;
    transform: scale(1.1);
}

/* Notification count styling */
.notification-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FFE000;
    color: #000000;
    border: 2px solid #ffffff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Bootstrap badge overrides for TAPE branding */
.badge.bg-warning {
    background-color: #FFE000 !important;
    color: #000000 !important;
    font-weight: bold;
}

.badge.bg-warning.text-dark {
    background-color: #FFE000 !important;
    color: #000000 !important;
    font-weight: bold;
}

/* PWA notification styling */
.pwa-notification {
    background-color: #FFE000;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 12px;
    margin: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Service worker notification badge */
.sw-notification-badge {
    background-color: #FFE000;
    color: #000000;
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
} 