a {
    color: inherit;
}

.green-color {
    color: #2AA63C;
    padding: 5px 10px;
    background: #F3FFF6;
    border-radius: 8px;
}

.loader__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;

}
.loader {
    width: 200px;
    height: 200px;
    border: 10px solid #252525;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 12px solid transparent;
    border-bottom-color: #e6a500;
}

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

.notification-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.notification-modal.hidden {
    display: none;
}

.notification-modal-content {
    background: white;
    padding: 24px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.notification-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.notification-message {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.notification-ok-button {
    padding: 10px 20px;
    background: #E6A500;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.notification-ok-button:hover {
    background: #ffba14;
}

.delete-staff-btn {
    background: red;
    color: #fff;
    margin-right: auto;
}

.container-article h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.container-article h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.container-article h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.label_desktop {
    display: none;
}

@media(max-width: 768px) {
    .mp-try-for-free {
        display: none !important;
    }

    .label_mob {
        display: none !important;
    }

    .label_desktop {
        display: flex;
        max-width: 290px;
    }
}



