body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.video-clicks {
    font-size: 14px;
    font-weight: bold;
    color: #777;
}

.video-page-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    gap: 20px;
}

.video-player {
    top: 20px;
    width: 60%;
    /*max-width: 1024px;*/
    max-height: 512px;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
    flex-shrink: 0;
    justify-content: center;
}

.video-player video {
    width: 100%;
    height: 100%;
    display: block;
}

.video-info {
    flex: 1 1 300px;
    max-width: 75%;
    padding: 1%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.video-info h3 {
    margin-top: 0;
}

.uploader-info {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.uploader-profile-pic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    word-break: break-word;
    margin-right: 10px;
    font-size: 24px;
}

.uploader-name {
    font-weight: bold;
    font-size: 20px;
    position: relative;
    left: 86px;
    bottom: 32px;
    margin: -12px;
}

.video-description {
    margin: 10px 0;
    font-size: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.video-date {
    font-size: 12px;
    color: #777;
}

.delete-video-button {
    flex-grow: 1;
    text-align: center;
    padding: 8px 12px;
    background-color: #eb4034;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.watchers {
    position: relative;
    color: #777;
    font-size: 12px;
    bottom: 6px;
}

.comment-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.comment-pfp {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid black;
}

.comment-form {
    display: block;
}

.comment-form textarea {
    width: 100%;
    height: auto;
    resize: none;
}

.comment-form button {
    
}

.comment-content {
    flex: 1;
}

.commenter-displayname {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    left: 48px;
    bottom: 32px;
    margin-bottom: -24px;
}

.comment-date {
    font-size: 12px;
    color: #888;
}

.comment {
    margin: 5px 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    font-size: 14;
}

.comment a {
    color: #fcba03;
    background-color: #000;
    background-color: RGBA(199, 146, 0, 0.1);
    zoom: 1;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.comment:hover a {
    color: #b37d00;
    background-color: #000;
    background-color: RGBA(179, 125, 0, 0.2);
}