html {
  font-size: 14px;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

@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;
}




/*usermaster fileupload  */
.photo-uploader {
    width: 120px; /* Adjust width of uploader */
    position: relative;
}

.upload-area {
    position: relative;
    width: 150px; /* Adjust size of circular area */
    height: 150px; /* Adjust size of circular area */
    border: 2px dashed #ccc;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    margin-left: 10%;
}

    .upload-area:hover {
        border-color: var(--theme-deafult) !important; /* Change border color on hover */
    }

.upload-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    color: #555;
    cursor: pointer;
    z-index: 1;
    position: relative;
}

    .upload-icon i {
        font-size: 2rem;
    }

    .upload-icon span {
        font-size: 0.8rem;
        margin-top: 5px;
    }

#previewImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
}

#fileInput {
    display: none; /* Hide the file input */
}
/*#endregion */




/*#region Start:- notification style for all the forms , Bhakta charn Rout */
.notificationbuttontemp {
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0px 15px;
    background-color: rgb(66, 66, 66);
    border-radius: 10px;
    color: white;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
}

.bell1 {
    width: 13px;
}

    .bell1 path {
        fill: rgb(0, 206, 62);
    }

.arrow1 {
    position: absolute;
    right: 0;
    width: 30px;
    height: 100%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notificationbuttontemp:hover {
    background-color: rgb(77, 77, 77);
    transition-duration: .2s;
}

    .notificationbuttontemp:hover .arrow {
        animation: slide-right .6s ease-out both;
    }
/* arrow animation */
@keyframes slide-right {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.notificationbuttontemp:active {
    transform: translate(1px, 1px);
    transition-duration: .2s;
}

/*#endregion End:- notification style for all the forms , Bhakta charn Rout*/








/*Drag and Drop region*/

.drop-area {
    cursor: pointer;
    border: 2px dashed #9b2ddb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

    .image-preview .file-item {
        position: relative;
        text-align: center;
        margin: 10px;
    }

.file-info {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    color: #9b2ddb;
    padding: 5px;
    opacity: 0%;
    z-index: 1;
    transition: 0.5s;
    display: block;
}

.file-item:hover img {
    filter: blur(3px);
}

.file-item:hover i {
    filter: blur(3px);
}

.file-item:hover .file-info {
    opacity: 100%;
}

.image-preview img {
    display: block;
    max-width: 230px;
    max-height: 115px;
    width: auto;
    height: auto;
    border-radius: 10px;
    border: 2px solid #ccc;
    margin: 0 10px;
}

.image-preview .remove-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #9b2ddb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.drop-error-message {
    color: #9b2ddb;
    font-weight: bold;
}

.file-input {
    display: none;
}
