/* Tab Drag and Drop Styles */

/* Drag effects */
.mks-page-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.mks-page-item.drag-over {
    border-top: 3px solid #10b981;
    background-color: #f0fdf4;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.notification-success {
    background-color: #10b981;
}

.notification-error {
    background-color: #ef4444;
}

.notification-warning {
    background-color: #f59e0b;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Move count animation */
.move-count {
    transition: all 0.2s ease;
}

/* Drag handle styling */
.mks-page-item[draggable="true"] {
    cursor: move;
}

.mks-page-item[draggable="true"]:hover {
    background-color: #f9fafb;
}
