#overlay {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
}

#overlay-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
    box-sizing: border-box;
}

.lds-spinner {
    color: white;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3.2px;
    left: 36.8px;
    width: 6.4px;
    height: 17.6px;
    border-radius: 20%;
    background: currentColor;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}



.hide {display: none !important;}


.loader {
    width: 18px;
    height: 18px;
    border: 3px solid #f2f1f5;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}





.alert {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 10px;

    text-align: center;
  }


  .alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
  }



  .seo-container {
    max-width: 900px;
    margin: 300px auto 0px auto;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.seo-title-main {
    font-size: 24px; /* معادل 1.8rem */
    padding: 10px;
    color: #333;
    font-weight: bold;
    margin-top: 30px;
    border-bottom: 2px solid #ddd;
}

.seo-title-section {
    font-size: 20px; /* معادل 1.5rem */
    padding: 10px;
    color: #555;
    margin-top: 20px;
}

.seo-text {
    font-size: 16px; /* معادل 1rem */
    padding: 10px;
    line-height: 1.6;
    color: #666;
    margin-top: 15px;
}

.seo-list {
    list-style: none;
    padding: 0;
}

.seo-list-item {
    padding: 10px 0;
    font-size: 16px; /* معادل 1rem */
}

.seo-list-link {
    text-decoration: none;
    color: #31C75F;
    font-weight: bold;
    transition: color 0.3s ease;
}

.seo-list-link:hover {
    color: #31C75F;
}

.seo-intro {
    text-align: center;
    padding: 20px 0;
    color: #444;
    font-size: 18px; /* معادل 1.2rem */
    font-weight: 500;
}

.seo-button {
    display: inline-block;
    background-color: #ffae00;
    color: #fff;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.seo-button:hover {
    background-color: #31C75F;
}

.seo-image-container {
    text-align: center;
    margin-top: 20px;
}

.seo-image-container img {
    max-width: 100%;
    height: auto;
    border: 5px solid #31C75F;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
