/**
 * Admin Broadcast Popup Styles
 * עיצוב התראות מנהל
 */

.admin-broadcast-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.admin-broadcast-popup.show {
    opacity: 1;
}

.admin-broadcast-popup-content {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid #fff;
}

@keyframes slideIn {
    from {
        transform: scale(0.5) translateY(-100px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.admin-broadcast-header {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.admin-broadcast-icon {
    font-size: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.admin-broadcast-header h3 {
    flex: 1;
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.admin-broadcast-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.admin-broadcast-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.admin-broadcast-body {
    padding: 30px 25px;
    background: white;
}

.admin-broadcast-body p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.admin-broadcast-footer {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.admin-broadcast-footer small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.admin-broadcast-btn {
    background: white;
    color: #ee5a24;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.admin-broadcast-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.admin-broadcast-btn:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 600px) {
    .admin-broadcast-popup {
        padding: 10px;
    }
    
    .admin-broadcast-popup-content {
        max-width: 100%;
    }
    
    .admin-broadcast-header h3 {
        font-size: 18px;
    }
    
    .admin-broadcast-body p {
        font-size: 15px;
    }
    
    .admin-broadcast-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .admin-broadcast-btn {
        width: 100%;
    }
}
