/* popup-live.css */

/* Popup notifikasi */
#popup-notif {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    font-family: 'Arial', sans-serif;
    color: #000;
    min-width: 200px;
    animation: slideIn 0.5s ease-out;
}

/* Slide-in dari kanan */
@keyframes slideIn {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Header pasaran & tanggal */
#popup-notif .header {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Nomor result dalam lingkaran */
#popup-notif .numbers {
    display: flex;
    justify-content: space-around;
}
#popup-notif .numbers span {
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Highlight baris baru */
.new-row {
    background-color: #fffa90 !important;
    transition: background-color 2s ease;
}

/* Styling search input (optional) */
#searchPasaran {
    padding: 6px 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 4px;
}

/* Responsive untuk mobile */
@media (max-width: 400px) {
    #popup-notif { min-width: 180px; padding: 15px 20px; }
    #popup-notif .numbers span { width: 30px; height: 30px; line-height: 30px; font-size:16px; }
    #searchPasaran { width: 95%; }
}

@media (max-width: 350px) {
    #popup-notif { min-width: 160px; padding: 12px 18px; }
    #popup-notif .numbers span { width: 28px; height: 28px; line-height:28px; font-size:14px; }
    #searchPasaran { width: 95%; }
}
