/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 600px; /* Omezení šířky seznamu */
    margin: auto;
}

li {
    background-color: rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

input[type="text"], button {
    padding: 8px;
    border-radius: 4px;
    border: none;
    margin: 5px;
}

button {
    background-color: #ffffff;
    color: #6a11cb;
    cursor: pointer;
}

button:hover {
    background-color: #2575fc;
}

span {
    cursor: pointer;
    font-size: 20px;
    user-select: none;
}

.watched {
    opacity: 0.6;
    text-decoration: line-through;
}

.rating-container {
    margin-left: 10px; 
    
}

/* styles.css */
.rating-container {
    position: relative;
    display: inline-block;
}

.rating-container:hover::after {
    content: attr(title);
    position: absolute;
    left: 0;
    top: 100%;
    white-space: nowrap;
    z-index: 1;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

