/* Utils Drawer Styles */

/* Main utils drawer container positioned at top-left */
.utils-drawer-container {
    position: absolute;
    z-index: 1000;
    top: 4px;
    left: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Common button styling for all drawer buttons */
.utils-drawer-button {
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(10, 159, 200, 0.474);
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.utils-drawer-button:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Button icon styling */
.utils-drawer-button img {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Dialog content styling */
.utils-drawer-dialog {
    background: white;
    border-radius: 16px;
    padding: 24px 16px;
}

.utils-drawer-dialog h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
}

/* Dialog button container */
.utils-drawer-dialog-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

/* Dialog buttons styling */
.utils-drawer-dialog-button {
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.utils-drawer-dialog-button:hover {
    background-color: #f0f0f0;
}

.utils-drawer-dialog-button.primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.utils-drawer-dialog-button.primary:hover {
    background-color: #0056b3;
}

/* Volume slider styling */
.utils-drawer-volume-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.utils-drawer-volume-container input[type="range"] {
    width: 200px;
}