/**
 * Modal Resize Handle Styles
 */

/* Resize handles - make them more visible on hover */
.modal-resize-handle {
    position: absolute;
    left: 0;
    right: 0;
    height: 12px;
    cursor: ns-resize;
    z-index: 100;
    background: transparent;
    transition: background 0.2s ease;
}

.modal-resize-top {
    top: 0;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.modal-resize-bottom {
    bottom: 0;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Hover effect */
.modal-resize-handle:hover {
    background: rgba(59, 130, 246, 0.15);
}

/* Visual indicator on hover */
.modal-resize-handle:hover::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 4px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 2px;
}

/* Active/dragging state */
.modal-resize-handle.resizing {
    background: rgba(59, 130, 246, 0.2);
}
