.full-screen-section {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}
 .podcast-icon-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     width: 150px;
     height: 150px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
     transition: all 0.3s ease;
     cursor: pointer;
}
 .podcast-icon-container .icon {
     font-size: 4rem;
     color: white;
     animation: pulse 2s infinite ease-in-out;
}
 @keyframes pulse {
     0% {
         transform: scale(1);
    }
     50% {
         transform: scale(1.05);
    }
     100% {
         transform: scale(1);
    }
}
 .podcast-icon-container .label {
     font-size: 1rem;
     color: white;
     margin-top: 0.5rem;
     font-weight: 600;
}
 @media (min-width: 992px) {
     .podcast-icon-container {
         width: 200px;
    }
     .podcast-icon-container .icon {
         font-size: 5rem;
    }
}
 .chat-bubble {
     padding: 0.75rem 1rem;
     border-radius: 1.25rem;
     max-width: 75%;
     margin-bottom: 0.75rem;
}
 .chat-bubble.you {
     background-color: #ffffff;
     color: #1f2937;
     align-self: flex-end;
     border-bottom-right-radius: 0.5rem;
}
 .chat-bubble.ebb {
     background-color: #93c5fd;
     color: #1f2937;
     align-self: flex-start;
     border-bottom-left-radius: 0.5rem;
}
 .chat-avatar {
     width: 2rem;
     height: 2rem;
     border-radius: 9999px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.75rem;
     font-weight: bold;
     color: white;
}
 #dynamic-content-container {
     position: relative;
     overflow: hidden;
     width: 100%;
     height: auto;
     transition: height 0.5s ease-in-out;
}
 #dynamic-content-container > div {
     width: 100%;
     top: 0;
     left: 0;
     display: flex;
     align-items: center;
     justify-content: center;
}
 #content-card {
     transition: background-color 0.6s ease-in-out;
     overflow: hidden;
     min-height: 600px;
     height: auto;
     width: 100%;
     max-width: 100%;
}
 @media (min-width: 992px) {
     #content-card {
         width: 1300px;
         max-width: 1300px;
         height: auto;
         min-height: 630px;
         max-height: 630px;
    }
}
 .dr-bakshi-info-box {
     background-color: #f3f4f6;
     padding: 1rem;
     border-radius: 0.75rem;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
