.video-container {
    margin-bottom: 20px;
}

.video-details {
    text-align: center;
    margin-top: 15px;
}

.video-code {
    font-weight: bold;
    color: #bbbbbb;
}

.video-title {
    font-size: 1.5rem;
    margin-top: 5px;
    color: #ffffff;
}

.btn-secondary {
    background-color: #333333;
    border: none;
}

.btn-secondary:hover {
    background-color: #555555;
}

.suggestion-card {
    background-color: #1e1e1e;
    border: 1px solid #333333;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.suggestion-card:hover {
    transform: scale(1.03);
}

.suggestion-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    text-overflow: ellipsis;
}

.suggestion-thumbnail {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #333333;
}

.suggestion-footer {
    border-top: 1px solid #333333;
    font-size: 0.9rem;
    color: #bbbbbb;
}

.viewers {
    display: flex;
    align-items: center;
}

.viewers i {
    margin-right: 5px;
}

.duration {
    font-size: 0.9rem;
}

.actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 5px;
    padding: 10px 15px;
    margin-top: 20px;
}

.actions-bar .likes, .actions-bar .dislikes {
    display: flex;
    align-items: center;
}

.actions-bar .likes i, .actions-bar .dislikes i {
    margin-right: 5px;
    font-size: 1.2rem;
}

.actions-bar .viewers {
    color: #bbbbbb;
    font-size: 0.9rem;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.video-info p {
    margin: 10px 10px;
    color: #bbbbbb;
}

.video-info strong {
    color: #ffffff;
}

.video-info div{
    padding-top: 10px;
}