/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 25 Şub 2025, 12:40:07
    Author     : cetinkarabudak
*/








.panel-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
}
h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}
.control-panel {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    font-size: 0.9rem;
}
.control-panel:last-child {
    border-bottom: none;
}
.mute-toggle {
    margin-right: 5px;
}
.form-range {
    width: 60%;
    padding: 5px;
    background-color: #DEDEDE;
    border-radius: 10px;
}
.btn-container {
    text-align: center;
    margin-bottom: 10px;
}

.heart-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.heart-blue {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: blue;
    opacity: 1;
    animation: floatUp 2s ease-in-out forwards;
}
.heart-red {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: red;
    opacity: 1;
    animation: floatUp 2s ease-in-out forwards;
}
@keyframes floatUp {
    0% {
	transform: translateX(-50%) translateY(-50);
	opacity: 1;
    }
    100% {
	transform: translateX(-50%) translateY(-250px);
	opacity: 0;
    }
}