/**** CSS For Loader ****/
/* Fullscreen overlay with blur effect */
.loading-overlay {
    position: fixed;
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent */
    backdrop-filter: blur(5px);          /* Blur background */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinner */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/**** End CSS For Loader ****/

/**** CSS Login and Register ****/
.full-page {
  min-height: 100vh;
}

.auth-image {
  background-image: url("https://placehold.co/800?text=Hello+World&font=roboto");
  background-size: cover;
  background-position: center;
}

.auth-form-container {
  padding: 3rem;
  max-width: 400px;
  width: 100%;
}

@media (max-width: 767.98px) {
  .auth-form-container {
    padding: 2rem;
  }
}
/**** End CSS Login and Register ****/

/**** CSS For Content Wrapper ****/
.background-layers {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -999;
    }
    .bg-odd,
    .bg-even {
        width: 100%;
        height: 50vh;
    }
    .bg-odd {
        background-color: #d9d9d9;
    }
    .bg-even {
        background-color: #e9eef2;
    }
    .content-wrapper {
        position: relative;
    }
    .side-menu {
        background-color: #a6a6a6;
        padding: 1rem;
        border-radius: 1.5rem;
        min-height: 70vh;
    }
    .side-menu-item {
        background-color: #d9d9d9;
        padding: 1rem;
        border-radius: 1rem;
        margin-bottom: 1rem;

        display: flex;
        align-items: center;
        text-decoration: none;
        color: #000;
    }
    .side-menu-item a {
        text-decoration: none;
        color: #000;
    }
    .side-menu-item:hover {
        text-decoration: none;
        background-color: #e9eef2;
    }
    .side-menu-item.active {
        background-color: #ffffff;
    }
    .main-content {
        background-color: #a6a6a6;
        padding: 1rem;
        border-radius: 1.5rem;
        min-height: 70vh;
    }
/**** End CSS For Content Wrapper ****/

/**** CSS For Dashboard ****/
.welcome-text {
    background-color: #d9d9d9;
    padding: 3rem;
    border-radius: 1.5rem;
}
/**** End CSS For Dashboard ****/

/**** CSS Universal ****/
.standart-bg {
    background-color: #d9d9d9;
    padding: 1rem;
    border-radius: 1.5rem;;
}
.btn-bg-white {
    background-color: #ffffff;
}
.btn-bg-white:hover {
    background-color: #e9eef2;
}
.btn-rounded {
    border-radius: 1.5rem;
}
.dropzone {
    border: 2px dashed #007bff;
    background: #f7f7f7;
}
/**** End CSS Universal ****/
