/* Auth Container Styles */
.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 480px;
  padding: 32px;
  background: rgba(9, 15, 94, 0.6);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

/* Form Section Styles */
.auth-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-section h2 {
  color: #98ecf7;
  font-family: DM Sans, var(--default-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}

/* Input Field Styles */
.auth-container input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(234, 235, 243, 0.1);
  border: 1px solid rgba(152, 236, 247, 0.2);
  border-radius: 8px;
  color: #eaebf3;
  font-family: Public Sans, var(--default-font-family);
  font-size: 16px;
  transition: all 0.3s ease;
}

.auth-container input::placeholder {
  color: rgba(152, 236, 247, 0.5);
}

.auth-container input:focus {
  border-color: #98ecf7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(152, 236, 247, 0.2);
}

/* Button Styles */
.auth-container button {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(45deg, #21b6ca, #3e5ad8);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-family: Public Sans, var(--default-font-family);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(152, 236, 247, 0.3);
}

.auth-container button:active {
  transform: translateY(1px);
}

/* Separator */
.auth-separator {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(152, 236, 247, 0.5);
  font-family: Public Sans, var(--default-font-family);
  font-size: 14px;
}

.auth-separator::before,
.auth-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(152, 236, 247, 0.2);
}

/* Responsive Adjustments */
@media screen and (min-width: 1024px) {
  .auth-container {
    flex-direction: row;
    max-width: 900px;
    align-items: flex-start;
  }

  .auth-section {
    flex: 1;
  }

  .auth-separator {
    width: auto;
    flex-direction: column;
    padding: 20px 0;
  }

  .auth-separator::before,
  .auth-separator::after {
    width: 1px;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .auth-container {
    padding: 24px;
    margin: 0 16px;
  }
}

/* Video Course Styles */
.course-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.video-player-section {
  width: 100%;
  margin-bottom: 30px;
  background: rgba(9, 15, 94, 0.6);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.main-video-container {
  width: 100%;
  background: rgba(234, 235, 243, 0.1);
  overflow: hidden;
}

.main-video-container video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.video-info {
  padding: 24px;
}

.video-info h2 {
  margin: 0 0 8px 0;
  color: #98ecf7;
  font-family: DM Sans, var(--default-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.video-info p {
  margin: 0;
  color: rgba(152, 236, 247, 0.75);
  font-family: Public Sans, var(--default-font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.video-list-section {
  width: 100%;
}

.video-list-section h3 {
  margin-bottom: 20px;
  color: #98ecf7;
  font-family: DM Sans, var(--default-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.video-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.video-item {
  background: rgba(9, 15, 94, 0.6);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(152, 236, 247, 0.2);
}

.video-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(152, 236, 247, 0.3);
  border-color: #98ecf7;
}

.thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(234, 235, 243, 0.1);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(9, 15, 94, 0.8);
  color: #98ecf7;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-family: Public Sans, var(--default-font-family);
  font-weight: 600;
}

.video-details {
  padding: 20px;
}

.video-details h4 {
  margin: 0 0 8px 0;
  color: #98ecf7;
  font-family: DM Sans, var(--default-font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.video-details p {
  margin: 0;
  color: rgba(152, 236, 247, 0.75);
  font-family: Public Sans, var(--default-font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

@media screen and (max-width: 768px) {
  .course-container {
    padding: 1px;
  }
  
  .video-list {
    grid-template-columns: 1fr;
  }
  
  .video-player-section {
    border-radius: 16px;
  }
}

/* Logout Button Styles */
.welcome-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logout-btn {
  padding: 12px 24px;
  background: linear-gradient(45deg, #21b6ca, #3e5ad8);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-family: Public Sans, var(--default-font-family);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(152, 236, 247, 0.3);
}

.logout-btn:active {
  transform: translateY(1px);
}

@media screen and (max-width: 768px) {
  .welcome-header {
    flex-direction: column;
    gap: 16px;
  }
  
  .logout-btn {
    width: 100%;
    padding: 10px 20px;
  }
}

/* Video subtitle styles */
video::cue {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-family: Public Sans, var(--default-font-family);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-player-section video::-webkit-media-text-track-display {
    font-family: Public Sans, var(--default-font-family);
}

/* For Firefox */
.video-player-section video::cue {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
}

/* For Safari */
@media screen and (min-width: 768px) {
    video::-webkit-media-text-track {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 767px) {
    video::cue {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* Course Content Styles */
.course-week {
    position: relative;
    background: rgba(9, 15, 94, 0.6);
    border-radius: 24px;
    padding: 32px 32px 32px 48px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(152, 236, 247, 0.2);
}

.course-week::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 3px;
    background: linear-gradient(180deg, #21b6ca, #3e5ad8);
    border-radius: 4px;
}

.course-week h2 {
    color: #98ecf7;
    font-family: DM Sans, var(--default-font-family);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 24px 0;
}

.course-module {
    position: relative;
    background: rgba(234, 235, 243, 0.1);
    border-radius: 16px;
    padding: 24px 24px 24px 40px;
    margin-bottom: 24px;
    margin-left: 20px;
}

.course-module::before {
    /*content: '';*/
    position: absolute;
    left: -20px;
    top: 32px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #21b6ca, #3e5ad8);
}

.course-module h3 {
    color: #98ecf7;
    font-family: DM Sans, var(--default-font-family);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.module-objective {
    background: rgba(9, 15, 94, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin: 0 0 24px 20px;
    border-left: 2px solid rgba(152, 236, 247, 0.4);
}

.module-objective h4 {
    color: #98ecf7;
    font-family: DM Sans, var(--default-font-family);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.module-objective p {
    color: rgba(152, 236, 247, 0.9);
    font-family: Public Sans, var(--default-font-family);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.content-section {
    margin: 24px 0 0 20px;
    padding-left: 20px;
    border-left: 2px solid rgba(152, 236, 247, 0.2);
}

.content-section h4 {
    color: #98ecf7;
    font-family: DM Sans, var(--default-font-family);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.content-scope {
    margin-left: 20px;
}

.content-scope h5 {
    color: #98ecf7;
    font-family: DM Sans, var(--default-font-family);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.ai-concepts {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.ai-concepts::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(152, 236, 247, 0.2);
}

.ai-concepts h6 {
    color: #98ecf7;
    font-family: DM Sans, var(--default-font-family);
    font-size: 17px;
    font-weight: 700;
    margin: 24px 0 12px 0;
}

.ai-concepts h6:first-child {
    margin-top: 0;
}

.ai-concepts p {
    color: rgba(152, 236, 247, 0.85);
    font-family: Public Sans, var(--default-font-family);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.ai-concepts ul {
    color: rgba(152, 236, 247, 0.85);
    font-family: Public Sans, var(--default-font-family);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.ai-concepts li {
    margin-bottom: 8px;
}

.ai-concepts li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .course-week {
        padding: 24px 10px 24px 22px;
    }
    
    .course-week::before {
        left: 8px;
    }
    
    .course-module {
        padding: 20px 10px 20px 15px;
        margin-left: 8px;
    }
    
    .module-objective,
    .content-section,
    .content-scope,
    .ai-concepts {
        margin-left: 2px;
    }
    
    .content-section,
    .ai-concepts {
        padding-left: 10px;
    }

    .course-week h2 {
        font-size: 24px;
    }

    .course-module h3 {
        font-size: 20px;
    }

    .module-objective {
        padding: 12px;
    }

    .ai-concepts h6 {
        font-size: 16px;
    }

    .ai-concepts p,
    .ai-concepts ul {
        font-size: 15px;
    }
}

/* Add these styles after .video-list-section styles */

.week-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
    padding: 0 20px;
}

.nav-btn {
    padding: 12px 24px;
    background: linear-gradient(45deg, #21b6ca, #3e5ad8);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: Public Sans, var(--default-font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(152, 236, 247, 0.3);
}

.nav-btn:active:not(.disabled) {
    transform: translateY(1px);
}

.nav-btn.disabled {
    background: rgba(9, 15, 94, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
}

.prev-btn i {
    margin-right: 4px;
}

.next-btn i {
    margin-left: 4px;
}

@media screen and (max-width: 768px) {
    .week-navigation {
        flex-direction: column;
        padding: 0;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Workshop Styles */
.workshop-note {
    margin-top: 32px;
    padding: 20px;
    background: rgba(33, 182, 202, 0.1);
    border-radius: 12px;
    border-left: 3px solid #21b6ca;
}

.workshop-note p {
    color: rgba(152, 236, 247, 0.9);
    font-family: Public Sans, var(--default-font-family);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.workshop-note strong {
    color: #98ecf7;
    font-weight: 600;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .workshop-note {
        padding: 16px;
        margin-top: 24px;
    }

    .workshop-note p {
        font-size: 14px;
    }
}

/* Resources Section Styles */
.resources-section {
    margin-top: 48px;
    padding: 32px;
    background: rgba(9, 15, 94, 0.6);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(152, 236, 247, 0.2);
}

.resources-container {
    max-width: 800px;
    margin: 0 auto;
}

.resources-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.resources-header i {
    font-size: 24px;
    color: #21b6ca;
}

.resources-header h3 {
    color: #98ecf7;
    font-family: DM Sans, var(--default-font-family);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.resources-description {
    color: rgba(152, 236, 247, 0.85);
    font-family: Public Sans, var(--default-font-family);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.resources-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.resources-list li {
    color: rgba(152, 236, 247, 0.85);
    font-family: Public Sans, var(--default-font-family);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.resources-list li i {
    color: #21b6ca;
    font-size: 20px;
    width: 24px;
    text-align: center;
    margin-top: 4px;
}

.resources-list li div {
    flex: 1;
}

.resources-list li strong {
    color: #98ecf7;
    display: block;
    margin-bottom: 4px;
}

.resources-list li p {
    margin: 0;
    font-size: 15px;
    color: rgba(152, 236, 247, 0.75);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(45deg, #21b6ca, #3e5ad8);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-family: Public Sans, var(--default-font-family);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(152, 236, 247, 0.3);
}

.download-btn:active {
    transform: translateY(1px);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .resources-section {
        padding: 24px;
        margin-top: 32px;
    }

    .resources-header {
        margin-bottom: 20px;
    }

    .resources-header h3 {
        font-size: 20px;
    }

    .resources-description {
        font-size: 15px;
    }

    .resources-list li {
        margin-bottom: 20px;
        gap: 12px;
    }

    .resources-list li strong {
        font-size: 15px;
    }
    
    .resources-list li p {
        font-size: 14px;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* Loading Button Styles */
.loading-btn {
    position: relative;
    pointer-events: none;
    color: transparent !important;
    background: linear-gradient(45deg, #21b6ca, #3e5ad8) !important;
}

.loading-btn * {
    opacity: 0;
}

.loading-btn::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: button-loading-spinner 0.8s linear infinite;
    z-index: 2;
}

.loading-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    z-index: 1;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Podcast Player Styles */
.podcast-player {
    background: rgba(9, 15, 94, 0.6);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    color: #98ecf7; /* Text color */
}

.podcast-player h3 {
    font-family: DM Sans, var(--default-font-family);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.podcast-player p {
    font-family: Public Sans, var(--default-font-family);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.podcast-player audio {
    width: 100%;
    border-radius: 8px;
    background: rgba(234, 235, 243, 0.1);
    padding: 10px;
}

/* Custom Audio Player Styles */
.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(234, 235, 243, 0.1);
    border-radius: 8px;
    padding: 10px;
}

.play-btn {
    background: transparent;
    border: none;
    color: #98ecf7;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.play-btn:hover {
    color: #21b6ca;
}

.progress-container {
    flex: 1;
    height: 8px;
    background: rgba(152, 236, 247, 0.2);
    border-radius: 4px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: #21b6ca;
    border-radius: 4px;
    width: 0;
}

.current-time,
.duration {
    color: #98ecf7;
    font-family: Public Sans, var(--default-font-family);
    font-size: 14px;
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    background: rgba(33, 182, 202, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap; /* Prevent text wrapping */
    z-index: 10; /* Ensure it appears above other elements */
    transform: translateY(-100%); /* Position above the progress bar */
    pointer-events: none; /* Prevent mouse events on the tooltip */
    width: 50px; /* Fixed width for the tooltip */
    text-align: center; /* Center the text */
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(9, 15, 94, 0.8);
    color: #98ecf7;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: Public Sans, var(--default-font-family);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.loading-spinner::before {
    content: '';
    border: 4px solid rgba(152, 236, 247, 0.5);
    border-top: 4px solid #98ecf7;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Comments Section Styles */
.comments-section {
  width: 100%;
  background: rgba(9, 15, 94, 0.6);
  border-radius: 24px;
  padding: 32px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

.comments-section h3 {
  color: #98ecf7;
  font-family: DM Sans, var(--default-font-family);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.comments-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.comment {
  background: rgba(234, 235, 243, 0.1);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(152, 236, 247, 0.2);
}

.comment-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.comment-meta {
  flex: 1;
  padding: 4px 0;
}

.comment-meta h4 {
  color: #eaebf3;
  font-family: Public Sans, var(--default-font-family);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.timestamp {
  color: rgba(152, 236, 247, 0.5);
  font-family: Public Sans, var(--default-font-family);
  font-size: 14px;
}

.comment-text {
  color: rgba(255, 255, 255, 0.75);
  font-family: Public Sans, var(--default-font-family);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Comment Form Styles */
.comment-form {
  background: rgba(234, 235, 243, 0.1);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(152, 236, 247, 0.2);
}

.comment-form h4 {
  color: #98ecf7;
  font-family: DM Sans, var(--default-font-family);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.comment-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px;
  background: rgba(234, 235, 243, 0.1);
  border: 1px solid rgba(152, 236, 247, 0.2);
  border-radius: 8px;
  color: #eaebf3;
  font-family: Public Sans, var(--default-font-family);
  font-size: 15px;
  resize: vertical;
  transition: all 0.3s ease;
}

.comment-form textarea::placeholder {
  color: rgba(152, 236, 247, 0.5);
}

.comment-form textarea:focus {
  border-color: #98ecf7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(152, 236, 247, 0.2);
}

.submit-comment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #21b6ca, #3e5ad8);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-family: Public Sans, var(--default-font-family);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-comment:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(152, 236, 247, 0.3);
}

.submit-comment:active {
  transform: translateY(1px);
}

.submit-comment i {
  font-size: 16px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .comments-section {
    padding: 24px;
    margin: 24px 16px;
  }

  .comment {
    padding: 16px;
  }

  .comment-form {
    padding: 20px;
  }
}

/* Add this to the Comments Section Styles */
.no-comments {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(234, 235, 243, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(152, 236, 247, 0.2);
}

.no-comments p {
  color: rgba(152, 236, 247, 0.7);
  font-family: Public Sans, var(--default-font-family);
  font-size: 16px;
  font-style: italic;
  text-align: center;
  margin: 0;
}

/* Add hover effect */
.no-comments:hover {
  background: rgba(234, 235, 243, 0.15);
  border-color: rgba(152, 236, 247, 0.3);
  transition: all 0.3s ease;
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
  .no-comments {
    padding: 30px 16px;
  }
  
  .no-comments p {
    font-size: 14px;
  }
}
