  .profile {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .profile .profile_sidebar {
    width: 320px;
    padding: 20px;
    border-radius: 12px;
    background: var(--card-bg);
  }

  .profile .profile_sidebar .sidebar_btn {
    display: block;
    width: 100%;
    padding: 6px;
    margin-bottom: 8px;
    background: var(--info-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    text-align: start;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .profile .profile_sidebar .sidebar_btn.active {
    background: #1B2841;
  }

  .profile .profile_sidebar .sidebar_btn span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--primary-bg);
    color: var(--dark-color);
    margin-right: 6px;
  }

  .profile .profile_sidebar .sidebar_btn.active span {
    background: var(--secondary-bg);
  }

  .profile .content {
    flex: 1;
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    background: var(--card-bg);
  }

  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }

  @media (max-width: 900px) {
    .profile .profile_sidebar {
      width: 200px;
      padding: 16px;
    }

    .profile .content {
      padding: 10px 12px;
    }
  }

  @media (max-width: 768px) {
    .profile {
      flex-direction: column;
    }

    .profile .profile_sidebar button {
      margin-bottom: 0px;
    }

    .profile .profile_sidebar {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
  }

  /* dashboard tab css */
  #dashboard .image_wrapper {
    position: relative;
    width: 100%;
  }

  #dashboard .image_wrapper img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  #dashboard .image_wrapper .image_content {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
  }

  #dashboard .resource_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  #dashboard .resource_wrapper .content_card {
    flex: 1;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #16213e;
    padding: 16px;
    gap: 4px;
    border-radius: 10px;
  }

  #dashboard .resource_wrapper .content_card img {
    width: 60px;
    height: auto;
  }

  #dashboard .course_wrapper .content_card {
    display: flex;
    flex-direction: column;
    background: #16213e;
    padding: 10px;
    gap: 8px;
    border-radius: 10px;
  }

  #dashboard .course_wrapper .content_card img {
    width: 100%;
    height: auto;
  }


  /* profile tab css */
  #profile .user_image {
    width: 150px;
    height: 150px;
    background: #16213e;
    border-radius: 50%;
    margin-bottom: 16px;
  }

  #profile .user_info {
    border-left: 3px solid var(--secondary-color);
    padding: 5px 12px;
    background: #16213e;
    border-radius: 0 5px 5px 0;
  }

  /* course tab css */
  #course .course_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  #course .course_grid .course_card {
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
    background: #1B2841;
    padding: 12px;
  }

  #course .course_grid .course_card:hover {
    transform: translateY(-4px);
  }

  #course .course_grid .course_card .course_thumb img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }

  #course .course_grid .course_card .course_body .course_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    line-height: 1;
    margin-top: 5px;
  }

  #course .course_grid .course_card .course_body .course_info span {
    color: #f0a528;
    font-size: 12px;
    font-weight: 600;
  }

  #course .course_grid .course_card .course_body .title {
    font-size: 16px;
    font-weight: 600;
  }

  @media(max-width:1024px) {
    #course .course_grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }
  }
  @media(max-width:600px) {
    #course .course_grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
    }
  }
  @media(max-width:450px) {
    #course .course_grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 6px;
    }
  }