.glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bg-grid {
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.35) 1px, transparent 0);
    background-size: 22px 22px;
}

.editable {
    background-color: #e0f2fe;
    text-align: center;
    font-weight: 500;
    border-radius: 5px;
    padding: 0.25rem;
}

.editable:focus {
    outline: 2px solid #22c55e;
    background-color: #d1fae5;
}

.profile-modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.profile-modal-content {
    max-height: 90vh;
    overflow-y: auto;
    max-width: 900px;
    width: 90%;
}
