/* modals.css – spoločné štýly modálov a resize handle */

.resizable-modal {
    position: relative;
    min-width: 320px;
    min-height: 200px;
    max-width: 95vw;
    max-height: 90vh;
    box-sizing: border-box;
}

.modal-resize-handle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    cursor: nwse-resize;
    z-index: 10;
}

.modal-resize-handle::after {
    content: '';
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    border-radius: 0 0 4px 0;
}

.modal-resize-handle:hover::after {
    border-color: #4CAF50;
}

body.modal-resizing {
    cursor: nwse-resize;
    user-select: none;
}

body.modal-resizing * {
    cursor: nwse-resize !important;
}
