.clickable {
    cursor: pointer;
}
.image-upload {
    position: relative;
    width: 100px;
    height: 100px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-upload input[type='file'] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.image-upload-icon {
    font-size: 24px;
    color: #007bff;
    visibility: visible;
}

.image-info {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}
.phone-img {
    position: relative;
    width: 137px;
    height: 123px;
    border-radius: 10px;
    border: 1px solid rgba(145, 158, 171, 0.30);
    text-align: center;
    margin-left: 20px;
}

/* Responsive adjustments for screens below custom width */
@media (max-width: 767px) {
    .phone-img {
        margin-bottom: 10px;
        margin-left: 0;
    }
}

.phone-img img {
    position: relative;
    width: 137px;
    height: 123px;
    border-radius: 10px;
    border: 1px solid rgba(145, 158, 171, 0.30)
}

.phone-img a {
    position: absolute;
    right: 3px;
    top: 3px;
    background: red; /* Placeholder for the $danger variable */
    border-radius: 3px;
    width: 16px;
    height: 16px;
    color: white; /* Placeholder for the $white variable */
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-img a:hover {
    color: white;
    background: #e61414;
}


.productimgname {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.productimgname a {
    color: #092c4c;
    font-weight: 500;
}

.blur-background {
    filter: blur(5px); /* Adjust the blur intensity as needed */
    transition: filter 0.3s ease; /* Smooth transition for the blur effect */
}

/* Ensure that child elements like the spinner are not affected by the blur */
.profile-cover-img .spinner-border {
    filter: none; /* This ensures that the spinner is not blurred */
}

.image-upload-container {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Make the container circular */
    overflow: hidden; /* Hide anything that overflows the circular container */
}

.image-upload-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Make the image circular */
}

.image-upload-container .upload-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
   
    padding: 10px; /* Make the icon circular */
    cursor: pointer;
    filter: blur(1px); /* Apply blur effect */
}

.image-upload-container input[type="file"] {
    display: none;
}