.crop-container {
    position: relative;
    display: inline-block;
    margin: 20px 0;
}

.crop-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.crop-overlay {
    position: absolute;
    border: 2px dashed #007bff;
    background: rgba(0, 123, 255, 0.1);
    cursor: move;
    display: none;
}

.crop-handle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #007bff;
    border: 2px solid white;
    cursor: nw-resize;
}

.crop-handle.bottom-right {
    bottom: -5px;
    right: -5px;
}

.result-section {
    display: none;
    justify-content: center;
}

.cropped-image {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}
.dimension-inputs{
    display:flex;
    gap:10px;
}
.dimension-inputs input{
    max-width: 100px;
}
.cropper-container{
    display: none;
    text-align: center;
}
.crop-container{
    max-width: 700px;
}
.align-center{
    text-align: center;
}
.cropper-controls{
    display: flex;
    gap:15px;
    gap: 15px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.round-btn{
    border-radius: 100%;
    padding: 12px;
    width: 44px;
    height:44px; 
}
/* Mobile-specific styles */
@media (max-width: 768px) {
    .cropper-controls{
        flex-direction: column;
    }
}