.spinner {
    width: 32px; /* Adjusted to match the button height */
    height: 32px; /* Adjusted to match the button height */
    margin-left: 10px;
    animation: rotate 2s linear infinite;
    vertical-align: middle;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.path {
    stroke: #077056; /* Your desired color */
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
