@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
*{    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
.main-follow{
    padding: 20px;
}
.main-follow .main-follow-head{
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 15px;
}
.main-follow-head #heading-followup{
    color: #008994;
    font-weight: bold;
    font-size: 18px;
}
.main-follow .recent>a{
    background-color: #2E6C9A;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}
.main-followup{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.main-followup .heading{
    font-size: 16px;
    font-weight: 500;
}
.fetching{
    border-radius: 10px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.main-follow .all-details-head{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left:10px ;
}
.main-follow .all-details-head .org-details{
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-follow .all-details-head .org-details figure{
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bdbdbd;
}
.all-details-head .org-details figure img{
    background-color: white;
    border-radius: 50%;
    height: 65px;
    width: 65px;
    object-fit: contain;
}
.all-details-head .org-details span{
    font-family: "Saira", sans-serif;
    font-size: 19px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    i{
        font-size: 16px;
    }
}
.main-follow .all-details-head .this-heading{
    display: flex;
    align-items: center;
    padding:30px 40px;
    border-radius: 40px 0px 0px 40px;
    background-color: #10578B;
    height: 100%;
}
.main-follow .all-details-head .this-heading div{
    font-size: 18px;
    font-weight: 500;
    color: white;
}
.main-follow .all-details{
    border-top: 1px solid rgba(27, 31, 35, 0.264);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: space-between;
    font-size: 14px;
    gap: 10px;
}
.main-follow .organisation-det{
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: rgb(113, 113, 113);
    max-width: 400px;
    width: 100%;
}
.main-follow .all-details .details{
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    justify-content: flex-start;
    gap: 5px;
    .material-symbols-outlined{
        font-size: 20px;
    }
}

.main-follow .all-details .enter-det{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    justify-content: space-evenly;
    font-size: 14px;
    color: rgb(113, 113, 113);
}
.all-details .enter-det .client input{
    width: 120px;
    padding: 5px;
    text-align: left;
    border: 1px solid rgb(207, 207, 207);
    border-radius: 3px;
    outline: none;
    color: rgb(113, 113, 113);
}
.enter-det .client span:last-child{
    padding: 0px 7px;
}
.all-details .enter-det .client #fetch-details{
    background-color: #009944;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}
.all-details .main-client-det{
    display: none;
}
.all-details .cient-det{
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: rgb(113, 113, 113);
}
@media (max-width:768px) {
    .all-details-head{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: right;
        gap: 20px;
    }
    .main-follow .all-details-head .this-heading{
        padding: 10px 20px;
        border-radius: 30px;
    }
}

/* form */
.form-container {
    background-color: white;
    padding: 20px 8px;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    font-size: 14px;
}

.form-container .prefered-type {
    font-size: 16px;
    padding: 10px 0px;
    font-weight: 500;
}

.radio-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.radio-buttons label {
    cursor: pointer;
    text-align: center;
}

.inputs {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.inputs>div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.inputs .inputs-fields{
    display: flex;
    flex-direction: column;
}

.inputs-fields input, .inputs select {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.inputs-fields label{
    font-weight: 500;
}
.submittion-followup{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inputs-fields>span{
    font-weight: 500;
}
#submitBtn {
    padding: 5px 10px;
    background-color: #2E6C9A;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
}

#submitBtn:hover {
    background-color: #10578B;
}


/* notify or pop up */
.customNotification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 20px 10px;
    border-radius: 12px;
    max-width: 300px;
    width: 100%;
    font-size: 16px;
    z-index: 9999;
    display: none;
    text-align: center;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    opacity: 0;  /* Set initial opacity to 0 for smooth fade-in */
    transition: opacity 0.3s ease, transform 0.3s ease;  /* Add transition for opacity and transform */
}

#notificationMessage {
    padding: 10px 5px;
    margin-bottom: 20px;
}

.okButton {
    background-color: #ffffff;
    color: #4caf50;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

.okButton:hover {
    background-color: #f1f1f1;
}


.radio-buttons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.radio-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    padding: 8px 0px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

/* Default colors for each button */
.face-to-face {
    background-color: #ffebcc; /* Light Orange */
    border-color: #ffa726;
}

.cold-call {
    background-color: #e3f2fd; /* Light Blue */
    border-color: #64b5f6;
}

.email {
    background-color: #f3e5f5; /* Light Purple */
    border-color: #ba68c8;
}

/* Hover Effects */
.face-to-face:hover {
    background-color: #ffa726;
    color: #fff;
}

.cold-call:hover {
    background-color: #64b5f6;
    color: #fff;
}

.email:hover {
    background-color: #ba68c8;
    color: #fff;
}

/* Hide Default Radio Button */
.radio-button input[type="radio"] {
    display: none;
}

/* Selected State Highlighting */
.radio-button input[type="radio"]:checked + label,
.radio-button:has(input[type="radio"]:checked) {
    /* border: 2px solid #444;  */
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    font-weight: bold;
}

/* Specific Background for Selected State */
.face-to-face input[type="radio"]:checked + label,
.face-to-face:has(input[type="radio"]:checked) {
    background-color: #fb8c00;
    color: white;
}

.cold-call input[type="radio"]:checked + label,
.cold-call:has(input[type="radio"]:checked) {
    background-color: #1e88e5;
    color: white;
}

.email input[type="radio"]:checked + label,
.email:has(input[type="radio"]:checked) {
    background-color: #8e24aa;
    color: white;
}
