body {
    font-family: Arial, sans-serif;
    text-align: center;
}

#container {
    margin-top: 50px;
}

#videoUrl {
    width: 80%;
    padding: 10px;
    font-size: 16px;
}

#extractButton {
    background-color: #4CAF50; /* Green background color */
    color: white; /* White text color */
    border: none; /* No border */
    padding: 10px 20px; /* Padding for the button */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Add a pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth background color transition */
}

#extractButton:hover {
    background-color: #45a049; /* Darker green color on hover */
}


.tags-box {
    margin-top: 20px;
    font-size: 18px;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: left; /* Center-align tag text */
    display: none;
}

.tags-box .tag {
    display: inline-block;
    background: white;
   border:1px solid #888;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
}

.tags-box .tag .close {
    position: inline;
    right: 0px;
    top: 0px;
    cursor: pointer;
}

#clearTagsButton {
    display: none;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #fd0808; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 20px;
}
#clearTagsButton:hover {
    background-color: #f03535; /* Button background color on hover */
}

.tags-box .tag .close:hover {
    color: red;
}
#copyTagsButton {
    display: none;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #31ff08; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 20px;
}

#copyTagsButton:hover {
    background-color: #7edf51; /* Button background color on hover */
}
