        .drop-zone{
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: outline 0.15s ease, background 0.15s ease;
        }

        /* SOLO cuando arrastras encima */
        .drop-zone.drag{
            border: 2px dashed #ccc;
            background: #eef5ff;
        }

        /* preview circular */
        #preview{
            max-width: 100%;
            border-radius: 50%;
        }
        /* Make the crop box circular */
        .cropper-view-box,
        .cropper-face {
          border-radius: 50%;
        }

        /* Optional: soften outside area */
        .cropper-bg {
          background: #000;
        }

        /* Optional: make outside darker */
        .cropper-modal {
          background-color: rgba(0, 0, 0, 0.6);
        }
        .avatar-wrapper {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            background: #e9ecef;
        }
        .app-content .avatar-wrapper{
            width: 40px;
            height: 40px;       
            margin: 0 8px;
            float: left;     
        }
       .app-content .avatar-fallback {
            font-size: 18px;
        }  
        .avatar {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover;
        }

        .avatar-fallback {
            position: absolute;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #adb5bd;
        }  