.btn-circle {
    width: 50px;
    height: 50px;
    padding: 6px 0px;
    border-radius: 25px;
    text-align: center;
    font-size: 12px;
    line-height: 1.428571429;
}

.context-menu {
    --font-size: 1rem;
    position: fixed;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 4px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.context-menu-header {
    padding: calc( var(--font-size) / 2);
    padding-bottom: calc((var(--font-size) / 16) * 12);
    font-size: var(--font-size);
    color: var(--bs-primary);
    white-space: nowrap;
    border-bottom: 1px solid #dee2e6;
}

.context-menu-item {
    padding: 6px 12px;
    cursor: pointer;
    font-size: calc((var(--font-size) / 16) * 12);
    white-space: nowrap;
}

.context-menu-item-danger {
    color: var(--bs-danger);
}

.context-menu-item:hover {
    background-color: #f8f9fa;
}

.context-menu-separator {
    height: 1px;
    background-color: #dee2e6;
    margin: 4px 0;
}

.shadow-settings {
    border-top: 1px solid #dee2e6;
    background: #f8f9fa;
}

.color-button {
    cursor: pointer;
    background: none;
}

.shadow-settings input[type="range"] {
    height: 24px;
}

.shadow-settings input[type="color"] {
    padding: 0;
    width: 32px;
    height: 24px;
}

.editor-container {
    position: relative;
    width: 900px;
    height: 500px;
    border: 2px solid #dee2e6;
    background: #f8f9fa;
    margin: 20px auto;
    overflow: hidden;
}

.slider-label {
    font-size: calc((var(--font-size) / 16) * 12);
}

.toolbar {
    text-align: center;
    margin: 20px 0;
}

.stats-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-box h5 {
    margin-bottom: 15px;
    font-size: 16px;
}

.stats-box .table {
    margin-bottom: 0;
    font-size: 13px;
}

.stats-box .table td {
    padding: 4px 8px;
    border: none;
}

.stats-box .table td:first-child {
    font-weight: 500;
    color: #666;
}