img {
    display: block;
    max-width: 100%;
}
.preview {
    overflow: hidden;
    width: 160px; 
    height: 160px;
    margin: 10px;
    border: 1px solid red;
}
.hoverClass{
    border-radius: 50rem!important;
    color: #ffffff !important;
    background-color: #e1bcbb;
    border-color: #e1bcbb !important;
}

/* Assigning general property to card  */
.Talentcard {
    position: relative;
    background-size: cover;
    background-color: black;
    border-radius: 20px;
    background-position:  center;
    overflow: hidden;
}

/* Assigning properties to inner
    content of card  */
.talentcard__inner {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    opacity: 0;
    padding: 2rem 1.3rem 2rem 2rem;
    transition: all 0.4s ease 0s;
}

/* On hovering card opacity of
    content must be 1*/
.Talentcard:hover .talentcard__inner {
    opacity: 1;
}

/* General property for heading
    and paragraph*/

.talentcard__inner .content {
    /* padding-right: 1rem; */
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    color: white;
}

.instaReview {
    position: absolute;
    right: 1.75rem;
    bottom: 1.25rem;
    font-family: var(--ff-roboto);
    color: #e1bcbb;
    font-size: 16px;
    z-index: 3;
}
.talimage{
    height: 378px;
    background-size: cover;
    object-fit: cover !important;
}

.enabled-day {
    background-color: #e6f7ff; /* Light blue background color */
    color: #000000; /* Black text color */
    font-weight: bold; /* Bold text */
  }

  .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color:#000000;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

  .page-item.active .page-link {
    z-index: 3;
    color: #fff;
     background-color: var(--dark)!important;
    border-color: var(--dark)!important;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.error-border {
    border: 1px solid red;
}