/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .blurred-profile-image {
    filter: blur(14px);
    transform: scale(1.05);
}

 .blurred-profile-imageclick{
    filter: blur(14px);
    transform: scale(1.05);
}

.blurred-media-photo .image-bg {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

.blur-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.blur-modal-content {
    background: #fff;
    padding: 25px;
    width: 350px;
    border-radius: 12px;
    text-align: center;
    animation: fadeInScale 0.2s ease;
}

.blur-modal h3 {
    margin-bottom: 10px;
}

.blur-modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.blur-modal-buttons button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.blur-cancel-btn {
    background: #ddd;
    margin-right: 10px;
}

.blur-continue-btn {
    background: #ff3b5c;
    color: #fff;
}

@keyframes fadeInScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
 