.custom-card-1:hover{
    border: 1px solid #6C42C1;
    cursor: pointer;
}
.custom-card-2:hover{
    border: 1px solid #455BE1;
    cursor: pointer;
}

.step-body-title{
    color: #292a2c;
    text-align: center;
}
.step-body-text{
    color: #6c757d;
    text-align: center;
}

.step-body-small-title{
    color: #292a2c;
    text-align: center;
    font-size: medium;
    margin-top: 1rem;
    margin-bottom: 0.2rem;
}
.step-body-small-text{
    color: #6c757d;
    text-align: center;
    font-size: small;
}
.step-body-small-link{
    color: #455BE1;
    font-size: small;
}

.disabled-link{
    color: #6c757d !important;
}



.circle-icon-outer{
    background-color: rgba(108, 66, 193, 0.2); 
    width: 6rem;
    height: 6rem;
    border-radius: 10rem;
}

.circle-icon{
    color:#6C42C1; 
    font-size: 4rem;
}



.circle-icon-outer2{
    background-color: rgba(69, 91, 225, 0.2);
    width: 6rem;
    height: 6rem;
    border-radius: 10rem;
}

.circle-icon2{
    color:#455BE1; 
    font-size: 4rem;
}


.custom-outline-btn{
    text-align: center;
    background-color: transparent;
    border: 1px solid #6C42C1;
    border-radius: 5px;
    color: #6C42C1;
    padding: 5px;
    font-size: large;
}


.custom-outline-btn:hover{
    background-color: #6C42C1;
    color: #ffff;
}


.custom-outline-btn2{
    text-align: center;
    background-color: transparent;
    border: 1px solid #455BE1;
    border-radius: 5px;
    color: #455BE1;
    padding: 5px;
    font-size: large;
}


.custom-outline-btn2:hover{
    background-color: #455BE1;
    color: #ffff;
}




.custom-back-btn{
    background-color: transparent !important;
    border: 1px solid #EA787C !important;
    border-radius: 5px !important;
    color: #EA787C !important;
    padding: 5px !important;
    font-size: large !important;
    text-align: center !important;
}


.custom-back-btn:hover{
    background-color: #EA787C !important;
    color: #ffff !important;
}


.custom-next-btn{
    background-color: rgba(69, 91, 225, 0.9);
    border: 1px solid #455BE1;
    border-radius: 5px;
    color: #455BE1;
    padding: 5px;
    font-size: large;
    color: #ffff;
}
.custom-next-btn:hover{
    background-color: #455BE1;
}




.warning-card{
    background-color: #eff6ff;
    border: 1px solid #bfdbff;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    
}

.warning-title{
    font-weight: bold;
    color: #1b398e;
    font-size: medium;
    margin: 2px;
    margin-bottom: 4px;
}
.warning-text{
    color: #1b398e;
    font-size: medium;
    margin: 2px;
}

.code-input {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin: 10px 0;
    letter-spacing: 5px;
}
.code-input:focus {
    border-color: #455BE1;
    outline: none;
}


.donor-image {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 10rem;
}

.donation-info-tab{
    background-color: #ececf0;
    padding: 5px;
    border-radius: 10rem;
}

.donation-info-active{
    background-color: white;
    border: 1px solid #ffff;
    color: black;
    border-radius: 10rem;

}

.donation-info-active:hover{
    border: 1px solid #455BE1;

}
.donation-info-deactive{
    background-color: transparent;
    border: 1px solid #ececf0;
    color: black;
    border-radius: 10rem;

}
.donation-info-deactive:hover{
    background-color: #d4d4d8;
    border: 1px solid #d4d4d8;

}


.success-icon {
    background-color: #d1fae5;
    color: #059669;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 20px auto;
}
.card {
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.btn-custom {
    background-color: #3b82f6;
    color: white;
    font-weight: 500;
}
.btn-custom:hover {
    background-color: #2563eb;
}






/* Container for share button */
.share-container {
  position: relative;
  display: inline-block;
}

/* Main share button */
.share-btn {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Social options menu */
.social-menu {
  display: none; /* hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 100;
}

/* Individual social buttons */
.social-menu button {
  display: block;
  padding: 8px 12px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.social-menu button:hover {
  background-color: #f0f0f0;
}