/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }

/* Dark Theme */

.v3d-simple-preloader-background {
    background-color: #181818;
}

.v3d-simple-preloader-container {
    filter: drop-shadow(0px 0px 4px #2a69bd);
}


.v3d-annotation {
    
    animation: pulse 2s infinite;
    
    opacity: 0.6;
    background: radial-gradient(circle, gray 30%, rgb(255, 255, 255) 31% 100%);
    cursor: pointer;
    width: 25px !important;      /* 'auto' ve 'min-width' değerlerini ezer */
    height: 25px !important;     
    
    /* 2. Kenar boşluklarını sıfırlıyoruz (Ovalleşmeyi önler) */
    padding: 0 !important;       
    
    /* 3. Kırmızı oklu kısımdaki sınırlamayı kaldırıyoruz */
    min-width: unset !important; 
    
    /* 4. Şekli yuvarlıyoruz */
    border-radius: 50% !important;
    
    /* İçindeki yazıyı/ikonu tam ortaya hizalamak için */
    display: flex ;
    justify-content: center;
    align-items: center;
    
    /* Yazı boyutunu kutuya sığacak şekilde ayarla */
    font-size: 12px !important; 
    line-height: 1 !important;
    
    
    
    
    

    
    }

    .v3d-annotation:hover {
    animation: pulse 2s infinite;
    
    opacity: 0.9;
    background: radial-gradient(circle, gray 30%, rgb(255, 255, 255) 31% 100%);
    cursor: pointer;
    
    
      
    
  }