body {
    font-family: Arial, sans-serif;
    background-color: #eaef8c; /* yellow background */
    color: #030119; /*Dark blue text */
    margin: 20px;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #000000; /* White headers */
}

a {
    color: #0e5ae7; /* blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #002f02; /* bruise */
}

video {
    border: 2px solid #848e10; /* greeene */
    border-radius: 5px;
    max-width: 100%;
}

.flash-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid;
}

.flash-message.success {
    background-color: #d4edda; /* Light green for success */
    color: #155724; /* Dark green text */
    border-color: #c3e6cb;
}

.flash-message.error {
    background-color: #f8d7da; /* Light red for error */
    color: #721c24; /* Dark red text */
    border-color: #f5c6cb;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
}

input[type="text"], input[type="password"], textarea {
    background-color: #5c3506; 
    color: #ffffff;
    border: 1px solid #0b0b0b;
    border-radius: 5px;
    padding: 5px;
}

input[type="submit"] {
    background-color: #1e90ff; /* Blue button */
    color: #ffffff; /* White text */
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.like-button, .dislike-button {
    background-color: #28A745; /* Green for like/dislike */
    color: #FFF8E1;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 5px;
}

.like-button.active, .like-button:disabled {
    background-color: #218838; /* Darker green when liked */
    cursor: default;
}

.dislike-button.active, .dislike-button:disabled {
    background-color: #dc3545; /* Red when disliked */
    cursor: default;
}

.like-count, .dislike-count {
    font-weight: bold;
    margin-right: 10px;
}