.dr-image-size-control {
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.dr-image-size-control label {
    display: flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #566267;
}

.dr-image-size-control label svg {
    margin-right: 5px;
}

.dr-slider-container {
    display: flex;
    align-items: center;
    width: 200px;
}

.dr-image-size-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    margin: 0 10px;
}

.dr-image-size-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #566267;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.dr-image-size-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #566267;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.dr-slider-value {
    font-size: 12px;
    color: #566267;
    min-width: 45px;
}

.customise-print-settings{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Focal Point Grid Styles */
.dr-focal-point-control {
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.dr-focal-point-control label {
    display: flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #566267;
}

.dr-focal-point-control label svg {
    margin-right: 5px;
}

.dr-focal-grid {
    display: grid;
    grid-template-columns: repeat(3, 18px);
    grid-template-rows: repeat(3, 18px);
    gap: 2px;
}

.dr-grid-cell {
    width: 18px;
    height: 18px;
    background-color: #e0e0e0;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dr-grid-cell:hover {
    background-color: #ccc;
}

.dr-grid-cell-active {
    background-color: #566267;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

@media print {

    .customise-print-settings {
        display: none;
    }
}