/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */


 .spinner {
    border: 2px solid #ccc;
    border-top: 2px solid #007BFF;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.6s linear infinite;
  }

  .polygon-number-icon .marker-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 14px;
    border: 2px solid white;
  }


  .marker-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 14px;
    border: 2px solid white;
  }


  .leaflet-tile {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .leaflet-div-icon {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .leaflet-marker-icon{
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .marker-number, .line-number-icon, .polygon-number-icon {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .leaflet-marker-icon svg {
    border: none !important;
    background: transparent !important;
    outline: none !important;
  }

  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  