/* SSM Safety Menu Styles */
.ssm-safety-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999 !important;
}

.safety-main-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF9933, #138808);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.safety-submenu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.safety-submenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.safety-option {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.safety-option:hover {
    background: #e9ecef;
}

.safety-option i {
    margin-right: 10px;
    width: 20px;
    color: #FF9933;
}

.safety-status {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #28a745;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
}

.backup-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 153, 51, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10002;
}

.backup-indicator.show {
    opacity: 1;
    visibility: visible;
}