:root {
    --indigo-color: #596CFF;
    --warning-color: #fd7e14;
    --main-color: #8220d0;
}
body{
    background-color:rgb(240, 242, 245) !important;
}

.color-indigo{
    background-color:#596CFF !important;
    color:white !important;
}
.main-color{
    background-color:#8220d0 !important;
    color:white !important;
}
.pic_card{
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.whatsapp_card{
    height:30rem;
}
.pic_card img{
    width:80%;
}
.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 17px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
  background-color: #8220d0;
}

input:focus + .slider {
  box-shadow: 0 0 1px #8220d0;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/*Mid DASHBOARD STYLE*/

.mid-box{
    padding:14px;
    border-radius:12px;
    box-shadow:gba(0, 0, 0, 0.1) 0rem 0.25rem 0.375rem;
}

.content {
    max-height: 100px; /* Limit initial height */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.expanded {
    max-height: 300px; /* Scrollable when expanded */
    overflow-y: auto;
}
#toggleButton{
    color: blue;
}





.upload-box {
    width: 150px;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.upload-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upload-box input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}


.dashed-border {
    border: 2px dashed #ccc;
    padding: 10px;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}
.preview-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    margin-top: 10px;
}


.fa-2x{
    font-size:18px !important;
}




