    body {
      background-color: var(--white);
      color: var(--yt-black);
      line-height: 1.5;
    }

    .container {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    /* Main Content */
    .main-content {
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
      max-width: 100%;
    }

    @media (min-width: 1200px) {
      .main-content {
        flex-direction: row;
      }
    }

    /* Video Player Section */
    .video-section {
      flex: 1;
      margin-right: 1.5rem;
    }

    .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      margin-bottom: 1rem;
      background-color: var(--yt-black);
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-title {
      font-size: 1.3rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .video-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--yt-light-gray);
      padding-bottom: 1rem;
      margin-bottom: 1rem;
    }

    .video-stats {
      color: var(--yt-gray);
      font-size: 0.9rem;
    }

    .action-buttons {
      display: flex;
      gap: 0.5rem;
    }

    .action-btn {
      display: flex;
      align-items: center;
      background: none;
      border: none;
      color: var(--yt-gray);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.5rem 0.75rem;
      border-radius: 18px;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .action-btn:hover {
      background-color: rgba(0, 0, 0, 0.05);
    }

    .action-btn i {
      margin-right: 0.5rem;
      font-size: 1.2rem;
    }

    .action-btn.liked {
      color: var(--primary-500);
    }

    .action-btn.bookmarked {
      color: var(--primary-500);
    }

    /* Channel Info */
    .channel-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      border-bottom: 1px solid var(--yt-light-gray);
    }

    .channel-details {
      display: flex;
      align-items: center;
    }

    .channel-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 1rem;
    }

    .channel-name {
      font-weight: 500;
      margin-bottom: 0.25rem;
    }

    .channel-subs {
      color: var(--yt-gray);
      font-size: 0.8rem;
    }

    .subscribe-btn {
      background: linear-gradient(45deg, #00b0d8, #00eaffbf);
      color: var(--white);
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 2px;
      font-weight: 500;
      cursor: pointer;
      text-transform: uppercase;
    }
    
    
    
  
    /* Video Description */
    .video-description {
      background-color: var(--yt-light-gray);
      padding: 1rem;
      border-radius: 4px;
      margin: 1rem 0;
    }

    .description-text {
      white-space: pre-line;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .show-more-btn {
      background: none;
      border: none;
      color: var(--yt-gray);
      font-weight: 500;
      margin-top: 0.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .show-more-btn i {
      margin-left: 0.25rem;
    }

    /* Comments Section */
    .comments-section {
      margin-top: 2rem;
    }

    .comments-header {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }

    .comments-count {
      margin-left: 0.5rem;
      font-weight: 500;
    }

    .comment-form {
      display: flex;
      margin-bottom: 1.5rem;
    }

    .comment-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 1rem;
    }

    .comment-input {
      flex: 1;
      border: none;
      border-bottom: 1px solid var(--yt-light-gray);
      padding: 0.5rem 0;
      font-size: 0.9rem;
      resize: none;
      outline: none;
    }

    .comment-input:focus {
      border-bottom: 1px solid var(--yt-gray);
    }

    .comment-list {
      margin-top: 1rem;
    }

    .comment-item {
      display: flex;
      margin-bottom: 1.5rem;
    }

    .comment-content {
      flex: 1;
    }

    .comment-author {
      font-weight: 500;
      font-size: 0.9rem;
    }

    .comment-text {
      font-size: 0.9rem;
      margin: 0.5rem 0;
    }

    .comment-actions {
      display: flex;
      gap: 1rem;
    }

    .comment-action {
      background: none;
      border: none;
      color: var(--yt-gray);
      font-size: 0.8rem;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .comment-action i {
      margin-right: 0.25rem;
    }
/*-------------------------- this is SIde BAAR CSS ----------------------------------------------------*/


/* Sidebar Styles */
.sidebar {
    width: 350px;
    padding: 1rem;
    background: #ffffff;
    border-left: 1px solid #e0e0e0;
    height: 100vh;
    overflow-y: auto;
    position: sticky;
    top: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Playlist Section */
.playlist-section {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.playlist-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.playlist-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.playlist-videos {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.playlist-section.expanded .playlist-videos {
    max-height: 400px;
}

.playlist-item {
    display: flex;
    padding: 0.8rem;
    gap: 0.8rem;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    background: white;
}

.playlist-item:hover {
    background: #f9f9f9;
    transform: translateX(3px);
}

.playlist-item.current {
    background: #f0f7ff;
    border-left: 3px solid #2575fc;
}

.playlist-thumbnail {
    width: 120px;
    height: 68px;
    border-radius: 5px;
    object-fit: cover;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.playlist-item:hover .playlist-thumbnail {
    transform: scale(1.02);
}

.playlist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.playlist-video-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playlist-channel {
    font-size: 0.75rem;
    color: #606060;
}

/* Related Section */
.related-section {
    margin-top: 2rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-item {
    display: flex;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.related-item:hover {
    background: #f9f9f9;
    transform: translateX(3px);
}

.related-thumbnail {
    width: 150px;
    height: 85px;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.related-item:hover .related-thumbnail {
    transform: scale(1.03);
}

.related-info {
    flex: 1;
    min-width: 0;
}

.related-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-channel {
    font-size: 0.75rem;
    color: #606060;
    margin-bottom: 0.2rem;
}

.related-meta {
    font-size: 0.7rem;
    color: #909090;
}

/* Playlist Thumbnail Styles */
.playlist-thumbnail-container {
    margin-bottom: 2rem;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.playlist-thumbnail-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.playlist-thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    color: white;
}

.playlist-thumbnail-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playlist-thumbnail-count {
    font-size: 0.8rem;
    opacity: 0.9;
}

.playlist-thumbnail-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.playlist-thumbnail-container:hover .playlist-thumbnail-icon {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sidebar {
        width: 300px;
    }
    
    .playlist-thumbnail {
        width: 100px;
        height: 56px;
    }
    
    .related-thumbnail {
        width: 120px;
        height: 68px;
    }
    
    .playlist-thumbnail-img {
        height: 160px;
    }
}

@media (max-width: 992px) {
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding: 1rem;
    }
    
    .playlist-videos {
        max-height: none;
    }
    
    .playlist-section, .related-section {
        margin: 0 0 2rem 0;
    }
    
    .playlist-thumbnail-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .playlist-item, .related-item {
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .playlist-thumbnail {
        width: 120px;
        height: 68px;
    }
    
    .related-thumbnail {
        width: 150px;
        height: 85px;
    }
    
    .playlist-thumbnail-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .sidebar {
        padding: -0rem;
    }
    
    .playlist-header {
        padding: 0.8rem;
    }
    
    .playlist-item, .related-item {
        flex-direction: row;
        align-items: center;
    }
    
    .playlist-thumbnail {
        width: 100px;
        height: 56px;
    }
    
    .related-thumbnail {
        width: 120px;
        height: 68px;
    }
    
    .playlist-video-title, .related-title {
        font-size: 0.85rem;
    }
    
    .playlist-channel, .related-channel {
        font-size: 0.7rem;
    }
    
    .related-meta {
        font-size: 0.65rem;
    }
    
    .playlist-thumbnail-img {
        height: 150px;
    }
    
    .playlist-thumbnail-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .playlist-thumbnail {
        width: 80px;
        height: 45px;
    }
    
    .related-thumbnail {
        width: 100px;
        height: 56px;
    }
    
    .playlist-video-title, .related-title {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }
    
    .playlist-thumbnail-img {
        height: 120px;
    }
    
    .playlist-thumbnail-title {
        font-size: 0.8rem;
    }
    
    .playlist-thumbnail-count {
        font-size: 0.7rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
/*----------------------------End OF the SIde baar CSS -------------------------------*/
    .playlist-section, .related-section {
      margin-bottom: 2rem;
    }

    .section-title {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
    }

    .section-title i {
        font-size: 1.5rem;
      margin-right: 0.5rem;
    }

    /* Playlist */
    .playlist-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .playlist-name {
      font-weight: 500;
      color: white;
      font-size: 1rem;
    }

    .playlist-count {
        width: 100px;
      color: var(--yt-gray);
      font-size: 0.9rem;
    }

    .playlist-videos {
      max-height: 500px;
      overflow-y: auto;
    }

    .playlist-item {
      display: flex;
      margin-bottom: 0.75rem;
      cursor: pointer;
    }

    .playlist-item.current {
      background-color: var(--primary-opacity-10);
    }

    .playlist-thumbnail {
      width: 120px;
      height: 68px;
      object-fit: cover;
      margin-right: 0.75rem;
      border-radius: 4px;
    }

    .playlist-info {
      flex: 1;
    }

    .playlist-video-title {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .playlist-channel {
      font-size: 0.8rem;
      color: var(--yt-gray);
    }

    /* Related Videos */
    .related-item {
      display: flex;
      margin-bottom: 1rem;
      text-decoration: none;
      color: inherit;
    }

    .related-thumbnail {
      width: 168px;
      height: 94px;
      object-fit: cover;
      border-radius: 4px;
    }

    .related-info {
      margin-left: 0.75rem;
    }

    .related-title {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .related-channel {
      font-size: 0.8rem;
      color: var(--yt-gray);
      margin-bottom: 0.25rem;
    }

    .related-meta {
      font-size: 0.8rem;
      color: var(--yt-gray);
    }

    /* Share Modal */
    .share-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      display: none;
    }

    .share-modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: var(--white);
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1001;
      max-width: 500px;
      width: 90%;
      display: none;
    }

    .share-modal h3 {
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .close-btn {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--yt-gray);
    }

    .share-options {
      display: flex;
      justify-content: space-around;
      margin: 1.5rem 0;
    }

    .share-options a {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: var(--yt-gray);
    }

    .share-options i {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .copy-link {
      display: flex;
      margin-top: 1rem;
    }

    .copy-link input {
      flex: 1;
      padding: 0.5rem;
      border: 1px solid var(--yt-light-gray);
      border-radius: 4px 0 0 4px;
      font-size: 0.9rem;
    }

    .copy-link button {
      padding: 0 1rem;
      background-color: var(--primary-500);
      color: var(--white);
      border: none;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }

    /* Edit Comment Modal */
    .edit-comment-form {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: var(--white);
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1001;
      max-width: 500px;
      width: 90%;
    }

    .edit-comment-form h2 {
      margin-bottom: 1rem;
    }

    .edit-comment-form textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid var(--yt-light-gray);
      border-radius: 4px;
      margin-bottom: 1rem;
      resize: vertical;
      min-height: 100px;
    }

    .edit-comment-actions {
      display: flex;
      justify-content: flex-end;
      gap: 0.5rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
    
      .video-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .action-buttons {
          font-size: 1.5rem;
        width: 100%;
        justify-content: space-between;
      }

      .channel-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .subscribe-btn {
        width: 40%;
      }

      .playlist-item, .related-item {
        flex-direction: column;
      }

      .playlist-thumbnail, .related-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        margin-right: 0;
        margin-bottom: 0.5rem;
      }
    }
    
    
    
    
    @media only screen and (max-width: 768px) {
     
     .video-stats {
      
      
      font-size: 1.9rem;   
     }
     
     .video-title {
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}   

.action-btn, .action-btn i ,.channel-name ,.comments-header {
    font-size: 1.9rem;
}
.channel-subs, .comment-input,.comment-author ,.comment-action,.related-title ,    .playlist-thumbnail-title  {
    font-size: 1.5rem;
}

.comment-text,.subscribe-btn ,.description-text, .section-title ,
    .playlist-thumbnail-count {
    
    font-size: 1.4rem;
}

.subscribe-btn ,.related-meta {
    
    font-size: 0.9rem;
    
}

}
    
        .comments-section {
        max-width: 800px;
        margin: 2rem auto;
        padding: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .comments-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
        color: var(--dark);
    }
    
    .comment-form {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
        align-items: flex-start;
    }
    
    .comment-avatar, .reply-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .comment-input {
        flex: 1;
        padding: 0.75rem;
        border: 1px solid var(--light-gray);
        border-radius: 8px;
        resize: none;
        min-height: 80px;
        font-family: inherit;
    }
    
    .comment-item, .reply-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .comment-content, .reply-content {
        flex: 1;
    }
    
    .comment-author, .reply-author {
        font-weight: 600;
        color: var(--dark);
    }
    
    .comment-text, .reply-text {
        margin: 0.5rem 0;
        line-height: 1.5;
        color: var(--dark);
    }
    
    .comment-actions {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .comment-action {
        background: none;
        border: none;
        color: var(--gray);
        cursor: pointer;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .comment-action:hover {
        color: var(--primary);
    }
    
    .replies-container {
        margin-top: 1rem;
        padding-left: 1rem;
        border-left: 3px solid var(--light-gray);
    }
    
    .reply-item {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .reply-avatar {
        width: 32px;
        height: 32px;
    }
    
    .reply-text {
        font-size: 0.9rem;
    }
    
    @media (max-width: 600px) {
        .comment-form {
            flex-direction: column;
        }
        
        .comment-input {
            width: 100%;
        }
        
        .subscribe-btn {
            align-self: flex-end;
        }
        
        .replies-container {
            padding-left: 0.5rem;
            margin-left: 0.5rem;
        }
         .playlist-count {
           width: 40px;   
         }
    }
    
    
    /*THIs is uploaded content */
    
     .video-thumb-container {
            position: relative;
            width: 100%;
        }

        .thumbnail-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            overflow: hidden;
        }

        .thumbnail-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            color: white;
            text-shadow: 0 0 10px rgba(0,0,0,0.5);
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .play-icon:hover {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .pending-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(231, 76, 60, 0.9);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .content-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .content-card:hover {
            transform: translateY(-5px);
        }

        .content-info {
            padding: 1.5rem;
        }

        .content-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .content-info p {
            color: #7f8c8d;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .content-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: #7f8c8d;
        }

        .content-status {
            display: inline-block;
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .status-deactive {
            background: #ffecec;
            color: #e74c3c;
        }

        .status-active {
            background: #e8f5e9;
            color: #2e7d32;
        }

        .content-stats {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: #7f8c8d;
        }