body {
    font-family: 'Poppins', sans-serif;
}
.theme-toggle-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn {
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.player-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.alert, .card {
    border-radius: 8px;
}
footer a {
    color: #f8f9fa;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.report {
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}
.report:hover {
    background-color: darkred;
}
.button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
