html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white; /* טקסט במרכז */
    z-index: 1;
    background: none; /* לא צריך רקע */
}

    /* המסגרת עם אחוזים */
    .progress-circle::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: conic-gradient( #000 0deg, #000 calc(var(--percent) * 3.6deg), /* שחור לפי אחוזים */
        #fff calc(var(--percent) * 3.6deg), #fff 360deg );
        z-index: 2; /* מעל הכל */
    }

    /* החלק הפנימי ירוק */
    .progress-circle::after {
        content: "";
        position: absolute;
        inset: 2px; /* עובי המסגרת */
        border-radius: 50%;
        background-color: #198754; /* ירוק של המלבן */
        z-index: 3;
    }

    /* הטקסט במרכז */
    .progress-circle .progress-text {
        position: relative;
        z-index: 4;
    }

